summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_type_spec.rb
blob: 07573044abb12fea30bd1ee2e2d7f5cd243f0866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 metadata versions
      status
    ]

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