From a166c21a49ddb5e9cca7ecde7cbb671f14a56fef Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 19 Sep 2018 17:08:35 -0700 Subject: Allow inbound emails to be created on the fly --- test/unit/mailbox/callbacks_test.rb | 2 +- test/unit/mailbox/routing_test.rb | 4 ++-- test/unit/mailbox/state_test.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'test/unit/mailbox') diff --git a/test/unit/mailbox/callbacks_test.rb b/test/unit/mailbox/callbacks_test.rb index ada6410876..4cafeb3534 100644 --- a/test/unit/mailbox/callbacks_test.rb +++ b/test/unit/mailbox/callbacks_test.rb @@ -13,7 +13,7 @@ end class ActionMailroom::Mailbox::CallbacksTest < ActiveSupport::TestCase setup do $before_processing = $after_processing = $around_processing = $processed = false - @inbound_email = create_inbound_email("welcome.eml") + @inbound_email = create_inbound_email_from_fixture("welcome.eml") end test "all callback types" do diff --git a/test/unit/mailbox/routing_test.rb b/test/unit/mailbox/routing_test.rb index 6026686bea..4a8ed10eb0 100644 --- a/test/unit/mailbox/routing_test.rb +++ b/test/unit/mailbox/routing_test.rb @@ -13,7 +13,7 @@ end class ActionMailroom::Mailbox::RoutingTest < ActiveSupport::TestCase setup do $processed = false - @inbound_email = create_inbound_email("welcome.eml") + @inbound_email = create_inbound_email_from_fixture("welcome.eml") end test "string routing" do @@ -23,7 +23,7 @@ class ActionMailroom::Mailbox::RoutingTest < ActiveSupport::TestCase test "delayed routing" do perform_enqueued_jobs only: ActionMailroom::RoutingJob do - another_inbound_email = create_inbound_email("welcome.eml", status: :pending) + another_inbound_email = create_inbound_email_from_fixture("welcome.eml", status: :pending) assert_equal "Discussion: Let's debate these attachments", $processed end end diff --git a/test/unit/mailbox/state_test.rb b/test/unit/mailbox/state_test.rb index 41fbafbd67..d73ecaa1e2 100644 --- a/test/unit/mailbox/state_test.rb +++ b/test/unit/mailbox/state_test.rb @@ -17,7 +17,7 @@ end class ActionMailroom::Mailbox::StateTest < ActiveSupport::TestCase setup do $processed = false - @inbound_email = create_inbound_email("welcome.eml") + @inbound_email = create_inbound_email_from_fixture("welcome.eml") end test "successful mailbox processing leaves inbound email in delivered state" do -- cgit v1.2.3