diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-04-15 14:13:46 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-04-15 14:13:46 -0700 |
commit | c630750fa59e248fb5af96f850392333e341ccd7 (patch) | |
tree | 22759e05f9e0dd6cb1089452a51601af08e8d50a /actionpack/test | |
parent | 2c54fde54d13038f143bb65c7154b5656606258f (diff) | |
download | rails-c630750fa59e248fb5af96f850392333e341ccd7.tar.gz rails-c630750fa59e248fb5af96f850392333e341ccd7.tar.bz2 rails-c630750fa59e248fb5af96f850392333e341ccd7.zip |
switch to using comments to comment things
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/new_base/render_test.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/test/controller/new_base/render_test.rb b/actionpack/test/controller/new_base/render_test.rb index d6062bfa8c..60468bf5c7 100644 --- a/actionpack/test/controller/new_base/render_test.rb +++ b/actionpack/test/controller/new_base/render_test.rb @@ -81,8 +81,7 @@ module Render end class TestOnlyRenderPublicActions < Rack::TestCase - describe "Only public methods on actual controllers are callable actions" - + # Only public methods on actual controllers are callable actions test "raises an exception when a method of Object is called" do assert_raises(AbstractController::ActionNotFound) do get "/render/blank_render/clone", {}, "action_dispatch.show_exceptions" => false |