summaryrefslogtreecommitdiff
path: root/spec/routing/api_routing_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/routing/api_routing_spec.rb')
-rw-r--r--spec/routing/api_routing_spec.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/spec/routing/api_routing_spec.rb b/spec/routing/api_routing_spec.rb
index 5fde4bd885b..b89669172f1 100644
--- a/spec/routing/api_routing_spec.rb
+++ b/spec/routing/api_routing_spec.rb
@@ -1,31 +1,31 @@
-require 'spec_helper'
+require "spec_helper"
-describe 'api', 'routing' do
- context 'when graphql is disabled' do
+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')
+ 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')
+ 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
+ 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')
+ 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')
+ it "exposes graphiql" do
+ expect(get("/-/graphql-explorer")).not_to route_to("graphiql/rails/editors#show")
end
end
end