diff options
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/mailbox/state_test.rb | 5 | ||||
-rw-r--r-- | test/unit/router_test.rb | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/test/unit/mailbox/state_test.rb b/test/unit/mailbox/state_test.rb index d73ecaa1e2..de9da54d3f 100644 --- a/test/unit/mailbox/state_test.rb +++ b/test/unit/mailbox/state_test.rb @@ -17,13 +17,14 @@ end class ActionMailroom::Mailbox::StateTest < ActiveSupport::TestCase setup do $processed = false - @inbound_email = create_inbound_email_from_fixture("welcome.eml") + @inbound_email = create_inbound_email_from_mail \ + to: "replies@example.com", subject: "I was processed" end test "successful mailbox processing leaves inbound email in delivered state" do SuccessfulMailbox.receive @inbound_email assert @inbound_email.delivered? - assert_equal "Discussion: Let's debate these attachments", $processed + assert_equal "I was processed", $processed end test "unsuccessful mailbox processing leaves inbound email in failed state" do diff --git a/test/unit/router_test.rb b/test/unit/router_test.rb index fa7ac2ba19..3ce669025e 100644 --- a/test/unit/router_test.rb +++ b/test/unit/router_test.rb @@ -15,10 +15,8 @@ module ActionMailroom end test "routed to mailbox" do - @router.route create_inbound_email_from_mail { - to "replies@example.com" - subject "This is a reply" - } + @router.route \ + create_inbound_email_from_mail(to: "replies@example.com", subject: "This is a reply") assert_equal "This is a reply", $processed end |