summaryrefslogtreecommitdiff
path: root/spec/graphql/types/packages/package_status_enum_spec.rb
blob: 2c79c92498bbea131dfea902b9fc54c056e5b273 (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 PENDING_DESTRUCTION])
  end
end