(self, tmp_path: Path)
| 494 | print(a, b) |
| 495 | |
| 496 | def test_cleanup_keep_0(self, tmp_path: Path): |
| 497 | self._do_cleanup(tmp_path, 0) |
| 498 | dir_num = len(list(tmp_path.iterdir())) |
| 499 | assert dir_num == 0 |
| 500 | |
| 501 | def test_cleanup_locked(self, tmp_path): |
| 502 | p = make_numbered_dir(root=tmp_path, prefix=self.PREFIX) |
nothing calls this directly
no test coverage detected