2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe VersionMailer do
|
2023-06-21 16:00:19 +02:00
|
|
|
subject(:mail) { VersionMailer.send_notice }
|
2013-08-16 17:28:36 -04:00
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context "when contact_email is blank" do
|
2015-06-03 15:44:00 +05:30
|
|
|
before { SiteSetting.contact_email = "" }
|
2014-10-29 16:06:50 +01:00
|
|
|
|
|
|
|
it "doesn't send the email" do
|
2023-06-21 16:00:19 +02:00
|
|
|
expect(mail.to).to be_blank
|
2014-10-29 16:06:50 +01:00
|
|
|
end
|
2013-08-16 17:28:36 -04:00
|
|
|
end
|
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context "when contact_email is set" do
|
2015-06-03 15:44:00 +05:30
|
|
|
before { SiteSetting.contact_email = "me@example.com" }
|
2014-10-29 16:06:50 +01:00
|
|
|
|
|
|
|
it "works" do
|
2023-06-21 16:00:19 +02:00
|
|
|
expect(mail.to).to eq(["me@example.com"])
|
|
|
|
expect(mail.subject).to be_present
|
|
|
|
expect(mail.from).to eq([SiteSetting.notification_email])
|
|
|
|
expect(mail.body).to be_present
|
2014-10-29 16:06:50 +01:00
|
|
|
end
|
2013-08-16 17:28:36 -04:00
|
|
|
end
|
|
|
|
end
|