(self)
| 2379 | self.assertIsNone(self.mbox.next()) |
| 2380 | |
| 2381 | def test_nonempty_maildir_both(self): |
| 2382 | self.createMessage("cur") |
| 2383 | self.createMessage("new") |
| 2384 | self.mbox = mailbox.Maildir(os_helper.TESTFN) |
| 2385 | #self.assertEqual(len(self.mbox.boxes), 2) |
| 2386 | self.assertIsNotNone(self.mbox.next()) |
| 2387 | self.assertIsNotNone(self.mbox.next()) |
| 2388 | self.assertIsNone(self.mbox.next()) |
| 2389 | self.assertIsNone(self.mbox.next()) |
| 2390 | |
| 2391 | ## End: tests from the original module (for backward compatibility). |
| 2392 |
nothing calls this directly
no test coverage detected