(self, tmp_path)
| 302 | ) |
| 303 | |
| 304 | def test_cleanup_ignores_symlink(self, tmp_path): |
| 305 | the_symlink = tmp_path / (self.PREFIX + "current") |
| 306 | attempt_symlink_to(the_symlink, tmp_path / (self.PREFIX + "5")) |
| 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) |
nothing calls this directly
no test coverage detected