diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-12-28 16:56:45 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-12-28 16:56:45 +0900 |
commit | d082439cf7e577e266bfeb7b443569f323df1673 (patch) | |
tree | c2ebc71765da298c1960e0d613131bdce7dac810 /actionmailbox | |
parent | ddaf06779aa51d5d1ca462c21c53f2ed169a0d2f (diff) | |
download | rails-d082439cf7e577e266bfeb7b443569f323df1673.tar.gz rails-d082439cf7e577e266bfeb7b443569f323df1673.tar.bz2 rails-d082439cf7e577e266bfeb7b443569f323df1673.zip |
Add missing quotes on Mailbox test template
Diffstat (limited to 'actionmailbox')
-rw-r--r-- | actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt b/actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt index 41749808e3..0b51f29fe4 100644 --- a/actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt +++ b/actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt @@ -5,7 +5,7 @@ require "test_helper" class <%= class_name %>MailboxTest < ActionMailbox::TestCase # test "receive mail" do # receive_inbound_email_from_mail \ - # to: '"someone" <someone@example.com>, + # to: '"someone" <someone@example.com>', # from: '"else" <else@example.com>', # subject: "Hello world!", # body: "Hello?" |