aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-09-18 17:28:35 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-09-18 17:28:35 -0700
commit26bfd1c59cf2dfa36fc02b87831449a8259c780e (patch)
tree672a7cb5a94b9353820dd0e43e74c2f069cf1f1b /lib
parentd1329efd815ea0be1d666b0c2b4664349a77e1a0 (diff)
downloadrails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.tar.gz
rails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.tar.bz2
rails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.zip
Only deliver pending emails to the mailroom
Makes it easier to test without triggering this behavior.
Diffstat (limited to 'lib')
-rw-r--r--lib/action_mailroom/test_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/action_mailroom/test_helper.rb b/lib/action_mailroom/test_helper.rb
index af9e3ad559..94321ecad3 100644
--- a/lib/action_mailroom/test_helper.rb
+++ b/lib/action_mailroom/test_helper.rb
@@ -2,8 +2,8 @@ module ActionMailroom
module TestHelper
# Create an InboundEmail record using an eml fixture in the format of message/rfc822
# referenced with +fixture_name+ located in +test/fixtures/files/fixture_name+.
- def create_inbound_email(fixture_name)
- ActionMailroom::InboundEmail.create!.tap do |inbound_email|
+ def create_inbound_email(fixture_name, status: :processing)
+ ActionMailroom::InboundEmail.create!(status: status).tap do |inbound_email|
inbound_email.raw_email.attach \
ActiveStorage::Blob.create_after_upload! \
io: file_fixture(fixture_name).open, filename: fixture_name, content_type: 'message/rfc822'