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

require 'spec_helper'

RSpec.describe Types::Ci::RunnerSetupType do
  specify { expect(described_class.graphql_name).to eq('RunnerSetup') }

  it 'exposes the expected fields' do
    expected_fields = %i[
      install_instructions
      register_instructions
    ]

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