2013-02-05 14:16:51 -05:00
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
describe TestMailer do
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe "send_test" do
|
|
|
|
|
2014-09-25 11:44:48 -04:00
|
|
|
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-05 14:16:51 -05:00
|
|
|
|
2014-09-25 11:44:48 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
end
|