aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/mailbox
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/mailbox')
-rw-r--r--test/unit/mailbox/callbacks_test.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/unit/mailbox/callbacks_test.rb b/test/unit/mailbox/callbacks_test.rb
index fccd89b9df..617e8a89b1 100644
--- a/test/unit/mailbox/callbacks_test.rb
+++ b/test/unit/mailbox/callbacks_test.rb
@@ -20,8 +20,10 @@ class BouncingCallbackMailbox < ActionMailbox::Base
before_processing { $before_processing << "Post-bounce" }
+ after_processing { $after_processing = true }
+
def process
- $processed = mail.subject
+ $processed = true
end
end
@@ -43,5 +45,6 @@ class ActionMailbox::Base::CallbacksTest < ActiveSupport::TestCase
assert @inbound_email.bounced?
assert_equal [ "Pre-bounce", "Bounce" ], $before_processing
assert_not $processed
+ assert_not $after_processing
end
end