2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe VersionMailer do
|
2023-06-21 09:00:19 -05:00
|
|
|
subject(:mail) { VersionMailer.send_notice }
|
2013-08-16 16:28:36 -05:00
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
context "when contact_email is blank" do
|
|
|
|
before { SiteSetting.contact_email = "" }
|
2014-10-29 10:06:50 -05:00
|
|
|
|
|
|
|
it "doesn't send the email" do
|
2023-06-21 09:00:19 -05:00
|
|
|
expect(mail.to).to be_blank
|
2014-10-29 10:06:50 -05:00
|
|
|
end
|
2013-08-16 16:28:36 -05:00
|
|
|
end
|
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
context "when contact_email is set" do
|
|
|
|
before { SiteSetting.contact_email = "me@example.com" }
|
2014-10-29 10:06:50 -05:00
|
|
|
|
|
|
|
it "works" do
|
2023-06-21 09:00:19 -05: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 10:06:50 -05:00
|
|
|
end
|
2013-08-16 16:28:36 -05:00
|
|
|
end
|
|
|
|
end
|