diff options
author | Kir Shatrov <shatrov@me.com> | 2014-12-01 17:45:33 -0500 |
---|---|---|
committer | Kir Shatrov <shatrov@me.com> | 2014-12-02 09:45:20 -0500 |
commit | 083f657c0f1990e980d33f89f44d8943a9270475 (patch) | |
tree | 9477e1ee32eb0384059d2d57b064b27d5023c08a /actionpack/test | |
parent | cd77755ae46616f24ae0ad2e586be528bb326be1 (diff) | |
download | rails-083f657c0f1990e980d33f89f44d8943a9270475.tar.gz rails-083f657c0f1990e980d33f89f44d8943a9270475.tar.bz2 rails-083f657c0f1990e980d33f89f44d8943a9270475.zip |
Refactor debug view
Avoid logic in ERB and use helpers
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/debug_exceptions_test.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb index 5e87744f6b..1e5ed60b09 100644 --- a/actionpack/test/dispatch/debug_exceptions_test.rb +++ b/actionpack/test/dispatch/debug_exceptions_test.rb @@ -241,6 +241,29 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest assert_match(/RuntimeError\n\s+in FeaturedTileController/, body) end + test "show formatted params" do + @app = DevelopmentApp + + params = { + 'id' => 'unknown', + 'someparam' => { + 'foo' => 'bar', + 'abc' => 'goo' + } + } + + get("/runtime_error", {}, { + 'action_dispatch.show_exceptions' => true, + 'action_dispatch.request.parameters' => { + 'action' => 'show', + 'controller' => 'featured_tile' + }.merge(params) + }) + assert_response 500 + + assert_includes(body, CGI.escapeHTML(PP.pp(params, "", 200))) + end + test "sets the HTTP charset parameter" do @app = DevelopmentApp |