assert_equal true, Message.find(messages(:unread_message).id).message_read
# Asking to reply to a message with no ID should fail
- assert_raise ActionController::RoutingError do
+ assert_raise ActionController::UrlGenerationError do
get :reply
end
assert_equal true, Message.find(messages(:unread_message).id).message_read
# Asking to read a message with no ID should fail
- assert_raise ActionController::RoutingError do
+ assert_raise ActionController::UrlGenerationError do
get :read
end
assert_equal false, Message.find(messages(:unread_message).id).message_read
# Asking to mark a message with no ID should fail
- assert_raise ActionController::RoutingError do
+ assert_raise ActionController::UrlGenerationError do
post :mark
end
assert_equal true, m.to_user_visible
# Asking to delete a message with no ID should fail
- assert_raise ActionController::RoutingError do
+ assert_raise ActionController::UrlGenerationError do
post :delete
end