(self)
| 85 | """Test lock breaking functionality""" |
| 86 | |
| 87 | def setUp(self) -> None: |
| 88 | self.temp_dir = tempfile.mkdtemp() |
| 89 | self.db_path = Path(self.temp_dir) / "test_locks.db" |
| 90 | self.db = LockDatabase(self.db_path) |
| 91 | os.environ["FASTLED_LOCK_DB_PATH"] = str(self.db_path) |
| 92 | |
| 93 | def tearDown(self) -> None: |
| 94 | import shutil |
nothing calls this directly
no test coverage detected