summaryrefslogtreecommitdiff
path: root/service/test/integration/test_drafts.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-07-31 17:04:25 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:31 +0200
commit38d810d338ce671b6389cd47d665b87798bcd65c (patch)
treecabce0d36989a2645cfafc50a503623a8d0a92ef /service/test/integration/test_drafts.py
parent77cb8b69610a893becd99286d85633e5317fedd2 (diff)
First steps migrating mail service to new data model.
Diffstat (limited to 'service/test/integration/test_drafts.py')
-rw-r--r--service/test/integration/test_drafts.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/service/test/integration/test_drafts.py b/service/test/integration/test_drafts.py
index d0505d75..bc314c04 100644
--- a/service/test/integration/test_drafts.py
+++ b/service/test/integration/test_drafts.py
@@ -77,8 +77,11 @@ class DraftsTest(SoledadTestBase):
@defer.inlineCallbacks
def test_put_creates_a_draft_if_it_does_not_exist(self):
mail = MailBuilder().with_subject('A new draft').build_json()
+ print '\nAdding mail\n'
yield self.put_mail(mail)[0]
+ print '\nAdded mail\n'
mails = yield self.get_mails_by_tag('drafts')
+ print '\ngot mails by tag\n'
self.assertEquals('A new draft', mails[0].subject)