boissier_app/test/functional/notification_test.rb
2011-06-30 19:29:38 +02:00

13 lines
352 B
Ruby

require 'test_helper'
class NotificationTest < ActionMailer::TestCase
test "prescription_received" do
mail = Notification.prescription_received
assert_equal "Prescription received", mail.subject
assert_equal ["to@example.org"], mail.to
assert_equal ["from@example.com"], mail.from
assert_match "Hi", mail.body.encoded
end
end