summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/group/labels_query_spec.rb
blob: 6c34cbadf956fd2e6bf11d037a690e12c82dc3ba (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'

describe 'getting group label information' do
  include GraphqlHelpers

  let_it_be(:group) { create(:group, :public) }
  let_it_be(:label_factory) { :group_label }
  let_it_be(:label_attrs) { { group: group } }

  it_behaves_like 'querying a GraphQL type with labels' do
    let(:path_prefix) { ['group'] }

    def make_query(fields)
      graphql_query_for('group', { full_path: group.full_path }, fields)
    end
  end
end