diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-06-12 13:24:56 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-06-12 13:25:11 -0300 |
commit | 0e06e8a69210e943abd6757d5713ab337e7df1df (patch) | |
tree | a1c8531d68b7682abcf179fdbe111048f084e469 /actionpack/test | |
parent | 14ccb0d8bed4ba7e04be47dfb41bbb44cc8b5ad5 (diff) | |
download | rails-0e06e8a69210e943abd6757d5713ab337e7df1df.tar.gz rails-0e06e8a69210e943abd6757d5713ab337e7df1df.tar.bz2 rails-0e06e8a69210e943abd6757d5713ab337e7df1df.zip |
This consider_all_requests_local doesn't make sense
This middleware is only for Public Exceptions.
This follows bd8c0b8a
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/show_exceptions_test.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/actionpack/test/controller/show_exceptions_test.rb b/actionpack/test/controller/show_exceptions_test.rb index ce7b6b0dc6..351b9c4cfa 100644 --- a/actionpack/test/controller/show_exceptions_test.rb +++ b/actionpack/test/controller/show_exceptions_test.rb @@ -22,14 +22,6 @@ module ShowExceptions end end - class ShowLocalExceptionsController < ActionController::Base - use ActionDispatch::ShowExceptions, ActionDispatch::PublicExceptions.new("#{FIXTURE_LOAD_PATH}/public", true) - - def boom - raise 'boom!' - end - end - class ShowExceptionsTest < ActionDispatch::IntegrationTest test 'show error page from a remote ip' do @app = ShowExceptionsController.action(:boom) @@ -101,14 +93,4 @@ module ShowExceptions assert_equal 'text/html', response.content_type.to_s end end - - class ShowExceptionsFormatsTest < ActionDispatch::IntegrationTest - def test_render_formatted_exception_in_development - @app = ShowLocalExceptionsController.action(:boom) - get "/", {}, 'HTTP_ACCEPT' => 'application/xml' - - assert_response :internal_server_error - assert_equal 'text/html', response.content_type.to_s - end - end end |