X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/13ef6a2df1b4d6a807beb6b107e07a62b78f906c..04017d0e7a827568f8124e92c0c53b265d23eb87:/test/functional/browse_controller_test.rb diff --git a/test/functional/browse_controller_test.rb b/test/functional/browse_controller_test.rb index df0bb0e41..4cc19b2d6 100644 --- a/test/functional/browse_controller_test.rb +++ b/test/functional/browse_controller_test.rb @@ -124,12 +124,12 @@ class BrowseControllerTest < ActionController::TestCase # then we check that we get the correct 404 when a non-existant id is passed # then we check that it will get a successful response, when we do pass an id def browse_check(type, id) - get type - assert_response :not_found - assert_template 'not_found' - get type, {:id => -10} # we won't have an id that's negative - assert_response :not_found - assert_template 'not_found' + assert_raise ActionController::RoutingError do + get type + end + assert_raise ActionController::RoutingError do + get type, {:id => -10} # we won't have an id that's negative + end get type, {:id => id} assert_response :success assert_template type