(self)
| 101 | assert len(should_delete) == 0 |
| 102 | |
| 103 | def test_removed(self): |
| 104 | lock_file = self._call(self.lock_path) |
| 105 | lock_file.release() |
| 106 | assert not os.path.exists(self.lock_path) |
| 107 | |
| 108 | def test_unexpected_lockf_or_locking_err(self): |
| 109 | if POSIX_MODE: |
no test coverage detected