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

@ -6,6 +6,8 @@
# The subject and body of a Notification can be customized by each demarche.
#
class NotificationMailer < ApplicationMailer
helper ServiceHelper
def send_dossier_received(dossier)
send_notification(dossier, dossier.procedure.received_mail_template)
end

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') }