summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/freeze_period_status_enum_spec.rb
blob: 2d9c7071392df32faff5addab57f1bc7c85fce2d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiFreezePeriodStatus'], feature_category: :release_orchestration do
  it 'exposes all freeze period statuses' do
    expect(described_class.values.keys).to contain_exactly(*%w[ACTIVE INACTIVE])
  end
end