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

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiConfigIncludeType'] do
  it { expect(described_class.graphql_name).to eq('CiConfigIncludeType') }

  it 'exposes all the existing include types' do
    expect(described_class.values.keys).to match_array(%w[remote local file template])
  end
end