(self, tmp_path)
| 516 | self._do_cleanup(tmp_path) |
| 517 | |
| 518 | def test_removal_accepts_lock(self, tmp_path): |
| 519 | dir = make_numbered_dir(root=tmp_path, prefix=self.PREFIX) |
| 520 | create_cleanup_lock(dir) |
| 521 | maybe_delete_a_numbered_dir(dir) |
| 522 | assert dir.is_dir() |
| 523 | |
| 524 | |
| 525 | class TestRmRf: |
nothing calls this directly
no test coverage detected