diff options
Diffstat (limited to 'service/test/unit/controllers')
-rw-r--r-- | service/test/unit/controllers/mails_controller_test.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/service/test/unit/controllers/mails_controller_test.py b/service/test/unit/controllers/mails_controller_test.py index c9c2c7cf..8108bc19 100644 --- a/service/test/unit/controllers/mails_controller_test.py +++ b/service/test/unit/controllers/mails_controller_test.py @@ -116,13 +116,6 @@ class TestMailsController(unittest.TestCase): verify(self.mail_service).delete_permanent(1) - def test_reply_all_returns_template(self): - when(self.mail_service).reply_all_template(1).thenReturn(self.input_mail.json) - - self.mails_controller.reply_all_template(self.dummy_request, 1) - - verify(self.mail_service).reply_all_template(1) - def _successfuly_send_mail(self, ident, mail): sent_mail = mock() sent_mail.as_dict = lambda: self.input_mail.json |