method
assert_emails
![Moderate documentation Importance_2](https://d2vfyqvduarcvs.cloudfront.net/images/importance_2.png?1349367920)
assert_emails(number, &block)
public
Asserts that the number of emails sent matches the given number.
def test_emails assert_emails 0 ContactMailer.welcome.deliver_now assert_emails 1 ContactMailer.welcome.deliver_now assert_emails 2 end
If a block is passed, that block should cause the specified number of emails to be sent.
def test_emails_again assert_emails 1 do ContactMailer.welcome.deliver_now end assert_emails 2 do ContactMailer.welcome.deliver_now ContactMailer.welcome.deliver_later end end
Register or
log in
to add new notes.
thewinner -
May 6, 2011
![Default_avatar_30](https://www.gravatar.com/avatar/92e9a1754f9cd789556075e8feec3be6?default=http://apidock.com/images/default_avatar_30.png&size=30)
0 thanks
Asserting Emails
–setup_mailer.rb in config/initializers –rails g mailer MailerName –methods in mailer_name.rb –files in views/mailer_name –MailerName.method(@object).deliver in object controller