Fix docs of `assert_no_emails` [ci skip]

`assert_no_emails` is shortcut for `assert_emails 0, &block`.
This commit is contained in:
bogdanvlviv 2018-06-29 15:58:30 +03:00
parent 1f4202611c
commit ff090977c1
No known key found for this signature in database
GPG Key ID: E4ACD76A6DB6DFDD
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ module ActionMailer
#
# Note: This assertion is simply a shortcut for:
#
# assert_emails 0
# assert_emails 0, &block
def assert_no_emails(&block)
assert_emails 0, &block
end