3 class ErrorsControllerTest < ActionDispatch::IntegrationTest
6 { :path => "/403", :method => :get },
7 { :controller => "errors", :action => "forbidden" }
10 { :path => "/404", :method => :get },
11 { :controller => "errors", :action => "not_found" }
14 { :path => "/500", :method => :get },
15 { :controller => "errors", :action => "internal_server_error" }
21 assert_response :forbidden
26 assert_response :not_found
29 def test_internal_server_error
31 assert_response :internal_server_error