gitlab-org--gitlab-foss/spec/graphql/types/ci/runner_architecture_type_sp...

17 lines
367 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Types::Ci::RunnerArchitectureType do
specify { expect(described_class.graphql_name).to eq('RunnerArchitecture') }
it 'exposes the expected fields' do
expected_fields = %i[
name
download_location
]
expect(described_class).to have_graphql_fields(*expected_fields)
end
end