diff options
author | Matthew Draper <matthew@trebex.net> | 2014-07-14 23:33:48 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2014-07-14 23:33:48 +0930 |
commit | 7b52a26bc442e02314051a1d8b26f64ea7fbcbf2 (patch) | |
tree | 0b879c63676a29b577f9e33ec7c6e0b45326f7ee /actionpack/test | |
parent | 55c1b1dc5adb86920b66e6acc30ddd41a7da3ce8 (diff) | |
parent | f49d20ef36c2d339e7a988fdc52981cdb95af22f (diff) | |
download | rails-7b52a26bc442e02314051a1d8b26f64ea7fbcbf2.tar.gz rails-7b52a26bc442e02314051a1d8b26f64ea7fbcbf2.tar.bz2 rails-7b52a26bc442e02314051a1d8b26f64ea7fbcbf2.zip |
Merge pull request #16168 from greysteil/stash-path-info
Stash original path in `ShowExceptions` middleware
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/show_exceptions_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/show_exceptions_test.rb b/actionpack/test/dispatch/show_exceptions_test.rb index 38bd234f37..323fbc285e 100644 --- a/actionpack/test/dispatch/show_exceptions_test.rb +++ b/actionpack/test/dispatch/show_exceptions_test.rb @@ -37,7 +37,7 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest get "/", {}, {'action_dispatch.show_exceptions' => true} assert_response 500 assert_equal "500 error fixture\n", body - + get "/bad_params", {}, {'action_dispatch.show_exceptions' => true} assert_response 400 assert_equal "400 error fixture\n", body @@ -92,6 +92,7 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest exceptions_app = lambda do |env| assert_kind_of AbstractController::ActionNotFound, env["action_dispatch.exception"] assert_equal "/404", env["PATH_INFO"] + assert_equal "/not_found_original_exception", env["action_dispatch.original_path"] [404, { "Content-Type" => "text/plain" }, ["YOU FAILED BRO"]] end |