- # Check that the marking a message read via XHR works
- post message_mark_path(:message_id => unread_message, :mark => "read")
- assert_response :see_other
- assert Message.find(unread_message.id).message_read
-
- # Check that the marking a message unread via XHR works
- post message_mark_path(:message_id => unread_message, :mark => "unread")
- assert_response :see_other
- assert_not Message.find(unread_message.id).message_read
+ # Check that the marking a message read works and redirects to inbox from the message page
+ post message_mark_path(message, :mark => "read"), :headers => { :referer => message_path(message) }
+ assert_redirected_to inbox_messages_path
+ assert Message.find(message.id).message_read