2018-11-08 19:23:39 +05:30
|
|
|
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
|
2019-05-18 00:54:41 +05:30
|
|
|
expect(post('/api/graphql')).not_to route_to('graphql#execute')
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-18 00:54:41 +05:30
|
|
|
context 'when graphql is enabled' do
|
2018-11-08 19:23:39 +05:30
|
|
|
before do
|
|
|
|
stub_feature_flags(graphql: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'routes to the GraphqlController' do
|
2019-05-18 00:54:41 +05:30
|
|
|
expect(post('/api/graphql')).to route_to('graphql#execute')
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|