diff options
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 1cc49a36d2..aa3497fa13 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1115,10 +1115,13 @@ require 'test_helper' class UserMailerTest < ActionMailer::TestCase test "invite" do + # Create the email and store it for further assertions + email = UserMailer.create_invite('me@example.com', + 'friend@example.com', Time.now) + # Send the email, then test that it got queued assert_emails 1 do - email = UserMailer.create_invite('me@example.com', - 'friend@example.com', Time.now).deliver_now + email.deliver_now end # Test the body of the sent email contains what we expect it to |