summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/freeze_period_type_spec.rb
blob: a7f7c2f9dc8f4a7701f007c44fb02eea659464f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiFreezePeriod'], feature_category: :release_orchestration do
  specify { expect(described_class.graphql_name).to eq('CiFreezePeriod') }

  it 'has the expected fields' do
    expected_fields = %w[
      status start_cron end_cron cron_timezone start_time end_time
    ]

    expect(described_class).to have_graphql_fields(*expected_fields)
  end

  specify { expect(described_class).to require_graphql_authorizations(:read_freeze_period) }
end