(self)
| 26 | """Basic lock acquisition and release tests.""" |
| 27 | |
| 28 | def setUp(self) -> None: |
| 29 | self.temp_dir = tempfile.mkdtemp() |
| 30 | self.db_path = Path(self.temp_dir) / "test_locks.db" |
| 31 | self.db = LockDatabase(self.db_path) |
| 32 | |
| 33 | def tearDown(self) -> None: |
| 34 | import shutil |
nothing calls this directly
no test coverage detected