We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c757fa commit ee5ff94Copy full SHA for ee5ff94
spec/hide_api_spec.rb
@@ -64,7 +64,7 @@ class HideNamespaceApi < Grape::API
64
65
def app; HideNamespaceApi end
66
67
- it "retrieves the documentation for mounted-api" do
+ it "retrieves swagger-documentation on /swagger_doc" do
68
get '/swagger_doc.json'
69
JSON.parse(last_response.body).should == {
70
"apiVersion" => "0.1",
@@ -78,7 +78,7 @@ def app; HideNamespaceApi end
78
}
79
end
80
81
- it "retrieves the documentation for mounted-api that doesn't include hidden paths" do
+ it "retrieves the documentation for mounted-api that doesn't include hidden endpoints" do
82
get '/swagger_doc/simple.json'
83
84
0 commit comments