summaryrefslogtreecommitdiff
path: root/spec/graphql/types/group_type_spec.rb
blob: de11bad0723aee52616d0fd8702b63f4ea8e7fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

describe GitlabSchema.types['Group'] do
  it { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Group) }

  it { expect(described_class.graphql_name).to eq('Group') }

  it { expect(described_class).to require_graphql_authorizations(:read_group) }

  it 'has the expected fields' do
    expected_fields = %w[web_url avatar_url mentions_disabled parent]

    is_expected.to include_graphql_fields(*expected_fields)
  end
end