summaryrefslogtreecommitdiff
path: root/spec/graphql/types/issue_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/issue_type_spec.rb')
-rw-r--r--spec/graphql/types/issue_type_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/graphql/types/issue_type_spec.rb b/spec/graphql/types/issue_type_spec.rb
index dc37b15001f..bae560829cc 100644
--- a/spec/graphql/types/issue_type_spec.rb
+++ b/spec/graphql/types/issue_type_spec.rb
@@ -6,4 +6,10 @@ describe GitlabSchema.types['Issue'] do
it { expect(described_class.graphql_name).to eq('Issue') }
it { expect(described_class).to require_graphql_authorizations(:read_issue) }
+
+ it 'has specific fields' do
+ %i[relative_position web_path web_url reference].each do |field_name|
+ expect(described_class).to have_graphql_field(field_name)
+ end
+ end
end