(self)
| 71 | """Multiple PIDs can hold read locks simultaneously.""" |
| 72 | |
| 73 | def setUp(self) -> None: |
| 74 | self.temp_dir = tempfile.mkdtemp() |
| 75 | self.db_path = Path(self.temp_dir) / "test_locks.db" |
| 76 | self.db = LockDatabase(self.db_path) |
| 77 | |
| 78 | def tearDown(self) -> None: |
| 79 | import shutil |
nothing calls this directly
no test coverage detected