(repo: Repository)
| 171 | |
| 172 | |
| 173 | def scenario_remove(repo: Repository) -> None: |
| 174 | path = create_file(repo) |
| 175 | repo.add(path) |
| 176 | repo.create_commit() |
| 177 | repo.git("rm", path) |
| 178 | repo.create_commit() |
| 179 | |
| 180 | |
| 181 | def scenario_rename(repo: Repository) -> None: |
nothing calls this directly
no test coverage detected