rails-guide-store/test/mailers/product_mailer_test.rb

12 lines
318 B
Ruby
Raw Normal View History

2025-01-24 19:11:47 +00:00
require "test_helper"
class ProductMailerTest < ActionMailer::TestCase
test "in_stock" do
mail = ProductMailer.in_stock
assert_equal "In stock", mail.subject
assert_equal [ "to@example.org" ], mail.to
assert_equal [ "from@example.com" ], mail.from
assert_match "Hi", mail.body.encoded
end
end