2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 17:41:23 +08:00
|
|
|
require "rails_helper"
|
2013-08-17 05:28:36 +08:00
|
|
|
|
|
|
|
describe VersionMailer do
|
|
|
|
subject { VersionMailer.send_notice }
|
|
|
|
|
|
|
|
context 'contact_email is blank' do
|
2015-06-03 18:14:00 +08:00
|
|
|
before { SiteSetting.contact_email = '' }
|
2014-10-29 23:06:50 +08:00
|
|
|
|
|
|
|
it "doesn't send the email" do
|
2014-12-31 22:55:03 +08:00
|
|
|
expect(subject.to).to be_blank
|
2014-10-29 23:06:50 +08:00
|
|
|
end
|
2013-08-17 05:28:36 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'contact_email is set' do
|
2015-06-03 18:14:00 +08:00
|
|
|
before { SiteSetting.contact_email = 'me@example.com' }
|
2014-10-29 23:06:50 +08:00
|
|
|
|
|
|
|
it "works" do
|
2014-12-31 22:55:03 +08: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 23:06:50 +08:00
|
|
|
end
|
|
|
|
|
2013-08-17 05:28:36 +08:00
|
|
|
end
|
|
|
|
end
|