debian-mirror-gitlab/spec/graphql/types/projects/base_service_type_spec.rb
2020-04-22 19:07:51 +05:30

13 lines
365 B
Ruby

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