Methods
T
Instance Public methods
test_use_format_paragraph()
# File actionmailer/test/mail_helper_test.rb, line 62
def test_use_format_paragraph
  mail = HelperMailer.use_format_paragraph
  assert_match " But soft! What\r\n light through\r\n yonder window\r\n breaks?", mail.body.encoded
end
test_use_mail_helper()
# File actionmailer/test/mail_helper_test.rb, line 46
def test_use_mail_helper
  mail = HelperMailer.use_mail_helper
  assert_match %r{  But soft!}, mail.body.encoded
  assert_match %r{east, and\r\n  Juliet}, mail.body.encoded
end
test_use_mailer()
# File actionmailer/test/mail_helper_test.rb, line 52
def test_use_mailer
  mail = HelperMailer.use_mailer
  assert_match "using helpers", mail.body.encoded
end
test_use_message()
# File actionmailer/test/mail_helper_test.rb, line 57
def test_use_message
  mail = HelperMailer.use_message
  assert_match "using helpers", mail.body.encoded
end