aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/test
diff options
context:
space:
mode:
authorRafael França <rafael@franca.dev>2019-07-25 22:14:37 -0400
committerGitHub <noreply@github.com>2019-07-25 22:14:37 -0400
commite53e25328094f86cbfa7d0e77fb2618a0a2b3518 (patch)
tree9a90748fc70e1e0add528cf85b935bcb69b9cef2 /actionmailbox/test
parent65dcc9d1597b5472ed59ea6c73686d48942f76f6 (diff)
parentce88f6bd2561f3ff31e39c70ae82b301ee0ddd79 (diff)
downloadrails-e53e25328094f86cbfa7d0e77fb2618a0a2b3518.tar.gz
rails-e53e25328094f86cbfa7d0e77fb2618a0a2b3518.tar.bz2
rails-e53e25328094f86cbfa7d0e77fb2618a0a2b3518.zip
Merge pull request #36765 from kylekeesling/patch-1
fix filenames of attachments created via the inbound email conductor
Diffstat (limited to 'actionmailbox/test')
-rw-r--r--actionmailbox/test/controllers/rails/action_mailbox/inbound_emails_controller_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionmailbox/test/controllers/rails/action_mailbox/inbound_emails_controller_test.rb b/actionmailbox/test/controllers/rails/action_mailbox/inbound_emails_controller_test.rb
index 6fc39c2433..ad13faf36c 100644
--- a/actionmailbox/test/controllers/rails/action_mailbox/inbound_emails_controller_test.rb
+++ b/actionmailbox/test/controllers/rails/action_mailbox/inbound_emails_controller_test.rb
@@ -45,8 +45,10 @@ class Rails::Conductor::ActionMailbox::InboundEmailsControllerTest < ActionDispa
end
mail = ActionMailbox::InboundEmail.last.mail
+ attachment_filenames = mail.attachments.map(&:filename)
assert_equal "Let's talk about these images:", mail.text_part.decoded
assert_equal 2, mail.attachments.count
+ assert_equal attachment_filenames, ["avatar1.jpeg", "avatar2.jpeg"]
end
end