(self)
| 524 | self.assertFalse(os.path.exists(self._get_lock_path())) |
| 525 | |
| 526 | def test_close(self): |
| 527 | # Close mailbox and flush changes to disk |
| 528 | self._test_flush_or_close(self._box.close, False) |
| 529 | |
| 530 | def _test_flush_or_close(self, method, should_call_close): |
| 531 | contents = [self._template % i for i in range(3)] |
nothing calls this directly
no test coverage detected