- 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