(self, tmp_path)
| 511 | ) |
| 512 | |
| 513 | def test_cleanup_ignores_symlink(self, tmp_path): |
| 514 | the_symlink = tmp_path / (self.PREFIX + "current") |
| 515 | attempt_symlink_to(the_symlink, tmp_path / (self.PREFIX + "5")) |
| 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) |
nothing calls this directly
no test coverage detected