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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 12:15:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 12:15:53 +0300
commit3ff1605f7d054d6dfc360c09ba5860e81250d5e4 (patch)
tree610db341b8aaae962fc5f32c2004e6dacc3e9a39 /spec/graphql/types/ml/model_version_type_spec.rb
parentde671a855fff66bcb0eae10b654e806b777f0751 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/graphql/types/ml/model_version_type_spec.rb')
-rw-r--r--spec/graphql/types/ml/model_version_type_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/graphql/types/ml/model_version_type_spec.rb b/spec/graphql/types/ml/model_version_type_spec.rb
new file mode 100644
index 00000000000..03652c55e20
--- /dev/null
+++ b/spec/graphql/types/ml/model_version_type_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe GitlabSchema.types['MlModelVersion'], feature_category: :mlops do
+ specify { expect(described_class.description).to eq('Version of a machine learning model') }
+
+ it 'includes all the package fields' do
+ expected_fields = %w[id version created_at _links]
+
+ expect(described_class).to include_graphql_fields(*expected_fields)
+ end
+end