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

labels_query_spec.rb « project « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1930a22ad30d94910514a7859e32444496a7d68f (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 'getting project label information', feature_category: :team_planning do
  include GraphqlHelpers

  let_it_be(:project) { create(:project, :public) }
  let_it_be(:label_factory) { :label }
  let_it_be(:label_attrs) { { project: project } }

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

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