2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe TestMailer do
|
2013-02-05 14:16:51 -05:00
|
|
|
describe "send_test" do
|
2014-09-25 17:44:48 +02:00
|
|
|
it "works" do
|
|
|
|
test_mailer = TestMailer.send_test("marcheline@adventuretime.ooo")
|
|
|
|
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(test_mailer.from).to eq([SiteSetting.notification_email])
|
|
|
|
expect(test_mailer.to).to eq(["marcheline@adventuretime.ooo"])
|
|
|
|
expect(test_mailer.subject).to be_present
|
|
|
|
expect(test_mailer.body).to be_present
|
2014-09-25 17:44:48 +02:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|