diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/router_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/router_test.rb b/test/unit/router_test.rb index 53a3d29f40..adc4cb3d71 100644 --- a/test/unit/router_test.rb +++ b/test/unit/router_test.rb @@ -2,7 +2,7 @@ require_relative '../test_helper' class RepliesMailbox < ActionMailroom::Mailbox def process - $processed = true + $processed = mail.subject end end @@ -15,7 +15,7 @@ module ActionMailroom test "routed to mailbox" do @router.route create_inbound_email("welcome.eml") - assert $processed + assert_equal $processed, "Discussion: Let's debate these attachments" end end end |