X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/942e62117ff7f12d40618a94ea3f4e86f8cb25af..a08fe1c2915722e70a695db244479c60157dd2b3:/test/controllers/errors_controller_test.rb diff --git a/test/controllers/errors_controller_test.rb b/test/controllers/errors_controller_test.rb index 01b07efc8..9f8ccee56 100644 --- a/test/controllers/errors_controller_test.rb +++ b/test/controllers/errors_controller_test.rb @@ -1,6 +1,6 @@ require "test_helper" -class ErrorsControllerTest < ActionController::TestCase +class ErrorsControllerTest < ActionDispatch::IntegrationTest def test_routes assert_routing( { :path => "/403", :method => :get }, @@ -17,17 +17,17 @@ class ErrorsControllerTest < ActionController::TestCase end def test_forbidden - get :forbidden + get "/403" assert_response :forbidden end def test_not_found - get :not_found + get "/404" assert_response :not_found end def test_internal_server_error - get :internal_server_error + get "/500" assert_response :internal_server_error end end