From a62adb430751885a2b6c4baaffe29ca6e763acc2 Mon Sep 17 00:00:00 2001 From: Frederic Merizen Date: Wed, 30 May 2018 17:07:29 +0200 Subject: [PATCH] [#1999] Remove dead code --- app/mailers/notification_mailer.rb | 4 ---- spec/controllers/new_user/dossiers_controller_spec.rb | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/app/mailers/notification_mailer.rb b/app/mailers/notification_mailer.rb index b493f8407..9d39aff0f 100644 --- a/app/mailers/notification_mailer.rb +++ b/app/mailers/notification_mailer.rb @@ -20,10 +20,6 @@ class NotificationMailer < ApplicationMailer send_notification(dossier, dossier.procedure.initiated_mail_template) end - def send_received_notification(dossier) - send_notification(dossier, dossier.procedure.received_mail_template) - end - def send_closed_notification(dossier) send_notification(dossier, dossier.procedure.closed_mail_template) end diff --git a/spec/controllers/new_user/dossiers_controller_spec.rb b/spec/controllers/new_user/dossiers_controller_spec.rb index 0f2b958eb..2717a6883 100644 --- a/spec/controllers/new_user/dossiers_controller_spec.rb +++ b/spec/controllers/new_user/dossiers_controller_spec.rb @@ -246,7 +246,7 @@ describe NewUser::DossiersController, type: :controller do it { expect(flash.alert).to eq(['nop']) } it 'does not send an email' do - expect(NotificationMailer).not_to receive(:send_received_notification) + expect(NotificationMailer).not_to receive(:send_initiated_notification) subject end