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

require 'spec_helper'

RSpec.describe Types::Ci::PipelineScheduleStatusEnum do
  specify { expect(described_class.graphql_name).to eq('PipelineScheduleStatus') }

  it 'exposes the status of a pipeline schedule' do
    expect(described_class.values.keys).to match_array(%w[ACTIVE INACTIVE])
  end
end