debian-mirror-gitlab/spec/graphql/types/ci/runner_setup_type_spec.rb
2021-01-29 00:20:46 +05:30

16 lines
377 B
Ruby

# 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