(self)
| 2394 | self.assertIsNone(self.mbox.next()) |
| 2395 | |
| 2396 | def test_nonempty_maildir_both(self): |
| 2397 | self.createMessage("cur") |
| 2398 | self.createMessage("new") |
| 2399 | self.mbox = mailbox.Maildir(os_helper.TESTFN) |
| 2400 | #self.assertEqual(len(self.mbox.boxes), 2) |
| 2401 | self.assertIsNotNone(self.mbox.next()) |
| 2402 | self.assertIsNotNone(self.mbox.next()) |
| 2403 | self.assertIsNone(self.mbox.next()) |
| 2404 | self.assertIsNone(self.mbox.next()) |
| 2405 | |
| 2406 | ## End: tests from the original module (for backward compatibility). |
| 2407 |
nothing calls this directly
no test coverage detected