summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_type_spec.rb
blob: 43289a019b32636e2eaeddcee0c2deb7e4a5906a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['Package'] do
  it 'includes all the package fields' do
    expected_fields = %w[
      id name version package_type
      created_at updated_at
      project
      tags pipelines versions
    ]

    expect(described_class).to include_graphql_fields(*expected_fields)
  end
end