debian-mirror-gitlab/spec/routing/api_routing_spec.rb

24 lines
523 B
Ruby
Raw Normal View History

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-07-07 11:18:12 +05:30
expect(post('/api/graphql')).not_to route_to('graphql#execute')
2018-11-08 19:23:39 +05:30
end
end
2019-07-07 11:18:12 +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-07-07 11:18:12 +05:30
expect(post('/api/graphql')).to route_to('graphql#execute')
2018-11-08 19:23:39 +05:30
end
end
end