summaryrefslogtreecommitdiff
path: root/spec/graphql/types/package_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/package_type_spec.rb')
-rw-r--r--spec/graphql/types/package_type_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/graphql/types/package_type_spec.rb b/spec/graphql/types/package_type_spec.rb
deleted file mode 100644
index 22048e7a693..00000000000
--- a/spec/graphql/types/package_type_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe GitlabSchema.types['Package'] do
- it { expect(described_class.graphql_name).to eq('Package') }
-
- it 'includes all the package fields' do
- expected_fields = %w[
- id name version created_at updated_at package_type
- ]
-
- expect(described_class).to include_graphql_fields(*expected_fields)
- end
-end