diff options
author | Rafael França <rafael@franca.dev> | 2019-07-26 13:27:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-26 13:27:23 -0400 |
commit | a40da823d729296514f310d13a09ce8e0b37b699 (patch) | |
tree | e23975a060a7621825afe7706381ad01f71e08ef /actionmailbox/test/unit | |
parent | d937e1f4ca6da53cc641fca808fd79919f579c62 (diff) | |
parent | 09e5d6d0040211a513d47ea7309af31aa719ed5b (diff) | |
download | rails-a40da823d729296514f310d13a09ce8e0b37b699.tar.gz rails-a40da823d729296514f310d13a09ce8e0b37b699.tar.bz2 rails-a40da823d729296514f310d13a09ce8e0b37b699.zip |
Merge pull request #35992 from jduff/include_bcc
Fix Bcc header missing with emails from conductor and test helpers
Diffstat (limited to 'actionmailbox/test/unit')
-rw-r--r-- | actionmailbox/test/unit/router_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/actionmailbox/test/unit/router_test.rb b/actionmailbox/test/unit/router_test.rb index 4dd3730604..7eb8e04a73 100644 --- a/actionmailbox/test/unit/router_test.rb +++ b/actionmailbox/test/unit/router_test.rb @@ -51,6 +51,15 @@ module ActionMailbox assert_equal inbound_email.mail, $processed_mail end + test "single string routing on bcc" do + @router.add_routes("first@example.com" => :first) + + inbound_email = create_inbound_email_from_mail(to: "someone@example.com", bcc: "first@example.com", subject: "This is a reply") + @router.route inbound_email + assert_equal "FirstMailbox", $processed_by + assert_equal inbound_email.mail, $processed_mail + end + test "single string routing case-insensitively" do @router.add_routes("first@example.com" => :first) |