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

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