summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_status_enum_spec.rb
blob: 71d05da35ea5d43b5d458152db62766bd3408b79 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['PackageStatus'] do
  it 'exposes all package statuses' do
    expect(described_class.values.keys).to contain_exactly(*%w[DEFAULT HIDDEN PROCESSING ERROR])
  end
end