diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/src/leap/mail/imap/tests/test_imap.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/mail/src/leap/mail/imap/tests/test_imap.py b/mail/src/leap/mail/imap/tests/test_imap.py index 980e46e..631a2c1 100644 --- a/mail/src/leap/mail/imap/tests/test_imap.py +++ b/mail/src/leap/mail/imap/tests/test_imap.py @@ -1106,8 +1106,21 @@ class LeapIMAP4ServerTestCase(IMAP4HelperMixin, unittest.TestCase): self.assertItemsEqual(self.results, [1, 3]) -class IMAP4ServerSearchTestCase(IMAP4HelperMixin, unittest.TestCase): +class AccountTestCase(IMAP4HelperMixin, unittest.TestCase): + """ + Test the Account. + """ + def _create_empty_mailbox(self): + LeapIMAPServer.theAccount.addMailbox('') + + def _create_one_mailbox(self): + LeapIMAPServer.theAccount.addMailbox('one') + def test_illegalMailboxCreate(self): + self.assertRaises(AssertionError, self._create_empty_mailbox) + + +class IMAP4ServerSearchTestCase(IMAP4HelperMixin, unittest.TestCase): """ Tests for the behavior of the search_* functions in L{imap5.IMAP4Server}. """ |