9b65d4bb41
- All definitions have been replaced by classes: http://graphql-ruby.org/schema/class_based_api.html - Authorization & Presentation have been refactored to work in the class based system - Loaders have been replaced by resolvers - Times are now coersed as ISO 8601
33 lines
942 B
Ruby
33 lines
942 B
Ruby
require 'spec_helper'
|
|
|
|
describe GitlabSchema do
|
|
it 'uses batch loading' do
|
|
expect(field_instrumenters).to include(BatchLoader::GraphQL)
|
|
end
|
|
|
|
it 'enables the preload instrumenter' do
|
|
expect(field_instrumenters).to include(BatchLoader::GraphQL)
|
|
end
|
|
|
|
it 'enables the authorization instrumenter' do
|
|
expect(field_instrumenters).to include(instance_of(::Gitlab::Graphql::Authorize::Instrumentation))
|
|
end
|
|
|
|
it 'enables using presenters' do
|
|
expect(field_instrumenters).to include(instance_of(::Gitlab::Graphql::Present::Instrumentation))
|
|
end
|
|
|
|
it 'has the base mutation' do
|
|
pending('Adding an empty mutation breaks the documentation explorer')
|
|
|
|
expect(described_class.mutation).to eq(::Types::MutationType.to_graphql)
|
|
end
|
|
|
|
it 'has the base query' do
|
|
expect(described_class.query).to eq(::Types::QueryType.to_graphql)
|
|
end
|
|
|
|
def field_instrumenters
|
|
described_class.instrumenters[:field]
|
|
end
|
|
end
|