[#325] Make the notification layout inherit from the general layout

This commit is contained in:
maatinito 2018-12-20 09:49:14 +01:00 committed by gregoirenovel
parent d80bf601e1
commit a1a11adb83
2 changed files with 8 additions and 11 deletions

View file

@ -34,7 +34,7 @@ RSpec.describe NotificationMailer, type: :mailer do
it { expect(mail.subject).to eq(email_template.subject_for_dossier) }
it { expect(mail.body).to include(email_template.body_for_dossier) }
it { expect(mail.body).to have_selector('footer') }
it { expect(mail.body).to have_link('messagerie') }
it_behaves_like "create a commentaire not notified"
end
@ -50,7 +50,7 @@ RSpec.describe NotificationMailer, type: :mailer do
it do
expect(mail.subject).to eq(email_template.subject)
expect(mail.body).to include(email_template.body)
expect(mail.body).to have_selector('footer')
expect(mail.body).to have_link('messagerie')
end
it_behaves_like "create a commentaire not notified"