2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe VersionMailer do
|
2013-08-16 17:28:36 -04:00
|
|
|
subject { VersionMailer.send_notice }
|
|
|
|
|
|
|
|
context 'contact_email is blank' do
|
2015-06-03 06:14:00 -04:00
|
|
|
before { SiteSetting.contact_email = '' }
|
2014-10-29 11:06:50 -04:00
|
|
|
|
|
|
|
it "doesn't send the email" do
|
2014-12-31 09:55:03 -05:00
|
|
|
expect(subject.to).to be_blank
|
2014-10-29 11:06:50 -04:00
|
|
|
end
|
2013-08-16 17:28:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'contact_email is set' do
|
2015-06-03 06:14:00 -04:00
|
|
|
before { SiteSetting.contact_email = 'me@example.com' }
|
2014-10-29 11:06:50 -04:00
|
|
|
|
|
|
|
it "works" do
|
2014-12-31 09:55:03 -05:00
|
|
|
expect(subject.to).to eq(['me@example.com'])
|
|
|
|
expect(subject.subject).to be_present
|
|
|
|
expect(subject.from).to eq([SiteSetting.notification_email])
|
|
|
|
expect(subject.body).to be_present
|
2014-10-29 11:06:50 -04:00
|
|
|
end
|
|
|
|
|
2013-08-16 17:28:36 -04:00
|
|
|
end
|
|
|
|
end
|