Fix failure when sending warning emails with custom text (#17983)
* Add tests * Fix failure when sending warning emails with custom textlolsob-rspec
parent
62906f15ad
commit
7ee6cc230e
|
@ -7,6 +7,7 @@ class UserMailer < Devise::Mailer
|
||||||
helper :application
|
helper :application
|
||||||
helper :instance
|
helper :instance
|
||||||
helper :statuses
|
helper :statuses
|
||||||
|
helper :formatting
|
||||||
|
|
||||||
helper RoutingHelper
|
helper RoutingHelper
|
||||||
|
|
||||||
|
|
|
@ -83,4 +83,15 @@ describe UserMailer, type: :mailer do
|
||||||
include_examples 'localized subject',
|
include_examples 'localized subject',
|
||||||
'devise.mailer.email_changed.subject'
|
'devise.mailer.email_changed.subject'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe 'warning' do
|
||||||
|
let(:strike) { Fabricate(:account_warning, target_account: receiver.account, text: 'dont worry its just the testsuite', action: 'suspend') }
|
||||||
|
let(:mail) { UserMailer.warning(receiver, strike) }
|
||||||
|
|
||||||
|
it 'renders warning notification' do
|
||||||
|
receiver.update!(locale: nil)
|
||||||
|
expect(mail.body.encoded).to include I18n.t("user_mailer.warning.title.suspend", acct: receiver.account.acct)
|
||||||
|
expect(mail.body.encoded).to include strike.text
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue