discourse/spec/mailers/test_mailer_spec.rb

19 lines
401 B
Ruby
Raw Normal View History

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
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
end
2013-02-05 14:16:51 -05:00
end