(self)
| 516 | self._box.flush() |
| 517 | |
| 518 | def test_lock_unlock(self): |
| 519 | # Lock and unlock the mailbox |
| 520 | self.assertFalse(os.path.exists(self._get_lock_path())) |
| 521 | self._box.lock() |
| 522 | self.assertTrue(os.path.exists(self._get_lock_path())) |
| 523 | self._box.unlock() |
| 524 | self.assertFalse(os.path.exists(self._get_lock_path())) |
| 525 | |
| 526 | def test_close(self): |
| 527 | # Close mailbox and flush changes to disk |
nothing calls this directly
no test coverage detected