Fix missing helper in notification mailer

This commit is contained in:
Mathieu Magnin 2019-04-11 12:23:40 +02:00
parent 22034730b0
commit 1a97cd42de
2 changed files with 3 additions and 1 deletions

View file

@ -13,7 +13,7 @@ RSpec.describe NotificationMailer, type: :mailer do
end
let(:user) { create(:user) }
let(:dossier) { create(:dossier, user: user) }
let(:dossier) { create(:dossier, :with_service, user: user) }
describe '.send_notification' do
let(:email_template) { instance_double('email_template', subject_for_dossier: 'subject', body_for_dossier: 'body') }