debian-mirror-gitlab/spec/graphql/types/projects/base_service_type_spec.rb
2020-08-09 17:44:08 +05:30

14 lines
381 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['BaseService'] do
specify { expect(described_class.graphql_name).to eq('BaseService') }
it 'has basic expected fields' do
expect(described_class).to have_graphql_fields(:type, :active)
end
specify { expect(described_class).to require_graphql_authorizations(:admin_project) }
end