(self, tmp_path)
| 307 | self._do_cleanup(tmp_path) |
| 308 | |
| 309 | def test_removal_accepts_lock(self, tmp_path): |
| 310 | folder = make_numbered_dir(root=tmp_path, prefix=self.PREFIX) |
| 311 | create_cleanup_lock(folder) |
| 312 | maybe_delete_a_numbered_dir(folder) |
| 313 | assert folder.is_dir() |
| 314 | |
| 315 | |
| 316 | class TestRmRf: |
nothing calls this directly
no test coverage detected