blob: 99b1e3b8a0ab545e2a6c1247fbba40aa978d3f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import unittest
from pixelated.adapter.pixelated_mail import InputMail
from pixelated.adapter.draft_service import DraftService
import test_helper
from mockito import *
class DraftServiceTest(unittest.TestCase):
def setUp(self):
self.mailboxes = mock()
self.drafts_mailbox = mock()
self.draft_service = DraftService(self.mailboxes)
when(self.mailboxes).drafts().thenReturn(self.drafts_mailbox)
def test_add_draft(self):
mail = InputMail()
self.draft_service.create_draft(mail)
verify(self.drafts_mailbox).add(mail)
def test_update_draft(self):
mail = test_helper.input_mail()
when(self.drafts_mailbox).add(mail).thenReturn(mail)
self.draft_service.update_draft(mail.ident, mail)
inorder.verify(self.drafts_mailbox).add(mail)
inorder.verify(self.drafts_mailbox).remove(mail.ident)
|