(self)
| 1497 | self.assertEqual(f.readlines(), []) |
| 1498 | |
| 1499 | def tearDown(self): |
| 1500 | super().tearDown() |
| 1501 | self._box.close() |
| 1502 | self._delete_recursively(self._path) |
| 1503 | for lock_remnant in glob.glob(glob.escape(self._path) + '.*'): |
| 1504 | os_helper.unlink(lock_remnant) |
| 1505 | |
| 1506 | def test_labels(self): |
| 1507 | # Get labels from the mailbox |
no test coverage detected