discourse/spec/mailers/test_mailer_spec.rb

19 lines
401 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
require "spec_helper"
describe TestMailer do
2013-02-26 00:42:20 +08:00
2013-02-06 03:16:51 +08:00
describe "send_test" do
it "works" do
test_mailer = TestMailer.send_test('marcheline@adventuretime.ooo')
test_mailer.from.should == [SiteSetting.notification_email]
test_mailer.to.should == ['marcheline@adventuretime.ooo']
test_mailer.subject.should be_present
test_mailer.body.should be_present
end
2013-02-06 03:16:51 +08:00
end
2013-02-06 03:16:51 +08:00
end