Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_schedule_status_enum_spec.rb « ci « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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