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
31 lines
786 B
Ruby
31 lines
786 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'api', 'routing' do
|
|
context 'when graphql is disabled' do
|
|
before do
|
|
stub_feature_flags(graphql: false)
|
|
end
|
|
|
|
it 'does not route to the GraphqlController' do
|
|
expect(get('/api/graphql')).not_to route_to('graphql#execute')
|
|
end
|
|
|
|
it 'does not expose graphiql' do
|
|
expect(get('/-/graphql-explorer')).not_to route_to('graphiql/rails/editors#show')
|
|
end
|
|
end
|
|
|
|
context 'when graphql is disabled' do
|
|
before do
|
|
stub_feature_flags(graphql: true)
|
|
end
|
|
|
|
it 'routes to the GraphqlController' do
|
|
expect(get('/api/graphql')).not_to route_to('graphql#execute')
|
|
end
|
|
|
|
it 'exposes graphiql' do
|
|
expect(get('/-/graphql-explorer')).not_to route_to('graphiql/rails/editors#show')
|
|
end
|
|
end
|
|
end
|