summaryrefslogtreecommitdiff
path: root/spec/support/shared_contexts/graphql/types/query_type_shared_context.rb
blob: 1585ef0e7fc089cdb23caf48a79e6d303b882a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

RSpec.shared_context 'with FOSS query type fields' do
  # extracted these fields into a shared variable so that we can define FOSS fields once and use them on EE spec as well
  let(:expected_foss_fields) do
    [
      :board_list,
      :ci_application_settings,
      :ci_config,
      :ci_variables,
      :container_repository,
      :current_user,
      :design_management,
      :echo,
      :gitpod_enabled,
      :group,
      :groups,
      :issue,
      :issues,
      :jobs,
      :merge_request,
      :metadata,
      :milestone,
      :namespace,
      :note,
      :package,
      :project,
      :projects,
      :query_complexity,
      :runner,
      :runner_platforms,
      :runner_setup,
      :runners,
      :snippets,
      :synthetic_note,
      :timelogs,
      :todo,
      :topics,
      :usage_trends_measurements,
      :user,
      :users,
      :work_item
    ]
  end
end