(self)
| 105 | """Write lock blocks other PIDs.""" |
| 106 | |
| 107 | def setUp(self) -> None: |
| 108 | self.temp_dir = tempfile.mkdtemp() |
| 109 | self.db_path = Path(self.temp_dir) / "test_locks.db" |
| 110 | self.db = LockDatabase(self.db_path) |
| 111 | |
| 112 | def tearDown(self) -> None: |
| 113 | import shutil |
nothing calls this directly
no test coverage detected