aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-09-30 18:33:53 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-09-30 18:42:46 +0900
commit5349f231089ddb884c7cb5405e74b7871383d65d (patch)
treee2d97c7d0b2693979d4bc477b584c475b6c30305 /actionpack/test/controller/new_base
parent285f9a89d5d9448461bfc7f19a45815e426c522e (diff)
downloadrails-5349f231089ddb884c7cb5405e74b7871383d65d.tar.gz
rails-5349f231089ddb884c7cb5405e74b7871383d65d.tar.bz2
rails-5349f231089ddb884c7cb5405e74b7871383d65d.zip
Remove `:api:` tag that has leaked on the doc directly [ci skip]
Currently `:api:` tag has leaked on the doc directly since RDoc doesn't support `:api:` tag directive. http://api.rubyonrails.org/v5.1/classes/AbstractController/Rendering.html So `:api: private` doesn't work as expected. We are using `:nodoc:` for the purpose. Related #13989.
Diffstat (limited to 'actionpack/test/controller/new_base')
-rw-r--r--actionpack/test/controller/new_base/base_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/test/controller/new_base/base_test.rb b/actionpack/test/controller/new_base/base_test.rb
index d9f200b2a7..280134f8d2 100644
--- a/actionpack/test/controller/new_base/base_test.rb
+++ b/actionpack/test/controller/new_base/base_test.rb
@@ -47,7 +47,6 @@ module Dispatching
end
class BaseTest < Rack::TestCase
- # :api: plugin
test "simple dispatching" do
get "/dispatching/simple/index"
@@ -56,14 +55,12 @@ module Dispatching
assert_content_type "text/plain; charset=utf-8"
end
- # :api: plugin
test "directly modifying response body" do
get "/dispatching/simple/modify_response_body"
assert_body "success"
end
- # :api: plugin
test "directly modifying response body twice" do
get "/dispatching/simple/modify_response_body_twice"