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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/query_type_spec.rb')
-rw-r--r--spec/graphql/types/query_type_spec.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/graphql/types/query_type_spec.rb b/spec/graphql/types/query_type_spec.rb
index 8bda738751d..0b5739be9a1 100644
--- a/spec/graphql/types/query_type_spec.rb
+++ b/spec/graphql/types/query_type_spec.rb
@@ -13,6 +13,14 @@ RSpec.describe GitlabSchema.types['Query'], feature_category: :shared do
expect(described_class).to have_graphql_fields(*expected_foss_fields).at_least
end
+ describe 'current_user field' do
+ subject { described_class.fields['currentUser'] }
+
+ it 'returns current user' do
+ is_expected.to have_graphql_type(Types::CurrentUserType)
+ end
+ end
+
describe 'namespace field' do
subject { described_class.fields['namespace'] }
@@ -137,4 +145,14 @@ RSpec.describe GitlabSchema.types['Query'], feature_category: :shared do
is_expected.to have_graphql_resolver(Resolvers::BoardListResolver)
end
end
+
+ describe 'mlModel field' do
+ subject { described_class.fields['mlModel'] }
+
+ it 'returns metadata', :aggregate_failures do
+ is_expected.to have_graphql_type(Types::Ml::ModelType)
+ is_expected.to have_graphql_arguments(:id)
+ is_expected.to have_graphql_resolver(Resolvers::Ml::ModelDetailResolver)
+ end
+ end
end