diff options
author | Xavier Noria <fxn@hashref.com> | 2012-12-07 11:52:42 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-12-07 11:52:42 -0800 |
commit | 9cb91f93295785dd393023223976101a8dafef03 (patch) | |
tree | 0a4195fa8ce31c21bec08bf28b495d10221a8d89 /actionpack/test/controller/show_exceptions_test.rb | |
parent | 85f4956fad22e1e039149a76db962157112679b6 (diff) | |
parent | a53a7bea8096a163876bb9961deb60f6c96b1493 (diff) | |
download | rails-9cb91f93295785dd393023223976101a8dafef03.tar.gz rails-9cb91f93295785dd393023223976101a8dafef03.tar.bz2 rails-9cb91f93295785dd393023223976101a8dafef03.zip |
Merge pull request #8455 from frodsan/actionize
Actionize: Use `_action` callbacks in documentation and code
Diffstat (limited to 'actionpack/test/controller/show_exceptions_test.rb')
-rw-r--r-- | actionpack/test/controller/show_exceptions_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/show_exceptions_test.rb b/actionpack/test/controller/show_exceptions_test.rb index 718d06ef38..888791b874 100644 --- a/actionpack/test/controller/show_exceptions_test.rb +++ b/actionpack/test/controller/show_exceptions_test.rb @@ -5,7 +5,7 @@ module ShowExceptions use ActionDispatch::ShowExceptions, ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public") use ActionDispatch::DebugExceptions - before_filter :only => :another_boom do + before_action only: :another_boom do request.env["action_dispatch.show_detailed_exceptions"] = true end |