summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/pipeline_schedule_status_enum_spec.rb
blob: d271e72b17fe778d36a869118a4396f5bf6778cc (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