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

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiJobKind'] do
  it 'exposes some job type values' do
    expect(described_class.values.keys).to match_array(
      (%w[BRIDGE BUILD])
    )
  end
end