(self)
| 1482 | self.assertEqual(f.readlines(), []) |
| 1483 | |
| 1484 | def tearDown(self): |
| 1485 | super().tearDown() |
| 1486 | self._box.close() |
| 1487 | self._delete_recursively(self._path) |
| 1488 | for lock_remnant in glob.glob(glob.escape(self._path) + '.*'): |
| 1489 | os_helper.unlink(lock_remnant) |
| 1490 | |
| 1491 | def test_labels(self): |
| 1492 | # Get labels from the mailbox |
no test coverage detected