Sha256: 6912bd1daacbf28cd9eec163d7d6b6d9451ea86a51e8ed199f688cb67627fa34
Contents?: true
Size: 539 Bytes
Versions: 97
Compression:
Stored size: 539 Bytes
Contents
require "test_helper" <% module_namespacing do -%> class <%= class_name %>MailerTest < ActionMailer::TestCase <% actions.each do |action| -%> test "<%= action %>" do mail = <%= class_name %>Mailer.<%= action %> assert_equal <%= action.to_s.humanize.inspect %>, mail.subject assert_equal ["to@example.org"], mail.to assert_equal ["from@example.com"], mail.from assert_match "Hi", mail.body.encoded end <% end -%> <% if actions.blank? -%> # test "the truth" do # assert true # end <% end -%> end <% end -%>
Version data entries
97 entries across 91 versions & 9 rubygems