From 5b829393a732143e31e2f9a62b6ca2cfb7ebb147 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 14 Jun 2021 21:10:22 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/graphql/types/ci/runner_type_spec.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'spec/graphql') diff --git a/spec/graphql/types/ci/runner_type_spec.rb b/spec/graphql/types/ci/runner_type_spec.rb index dfe4a30c5b7..f27216f4d39 100644 --- a/spec/graphql/types/ci/runner_type_spec.rb +++ b/spec/graphql/types/ci/runner_type_spec.rb @@ -2,15 +2,17 @@ require 'spec_helper' -RSpec.describe Types::Ci::RunnerType do +RSpec.describe GitlabSchema.types['CiRunner'] do specify { expect(described_class.graphql_name).to eq('CiRunner') } + specify { expect(described_class).to require_graphql_authorizations(:read_runner) } + it 'contains attributes related to a runner' do expected_fields = %w[ id description contacted_at maximum_timeout access_level active status version short_sha revision locked run_untagged ip_address runner_type tag_list ] - expect(described_class).to have_graphql_fields(*expected_fields) + expect(described_class).to include_graphql_fields(*expected_fields) end end -- cgit v1.2.3