Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_detail_spec.rb « entities « api « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fcb120c8091f3d353cc251038488e4be342f6b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::GroupDetail do
  describe '#as_json' do
    it 'includes prevent_sharing_groups_outside_hierarchy for a root group' do
      group = create(:group)

      expect(described_class.new(group).as_json).to include(prevent_sharing_groups_outside_hierarchy: false)
    end

    it 'excludes prevent_sharing_groups_outside_hierarchy for a subgroup' do
      subgroup = build(:group, :nested)

      expect(described_class.new(subgroup).as_json.keys).not_to include(:prevent_sharing_groups_outside_hierarchy)
    end
  end
end