(repo: Repository)
| 179 | |
| 180 | |
| 181 | def scenario_rename(repo: Repository) -> None: |
| 182 | path = create_file(repo, "old file.txt") |
| 183 | repo.add(path) |
| 184 | repo.create_commit() |
| 185 | repo.git("mv", path.name, "new file.txt") |
| 186 | repo.create_commit() |
| 187 | |
| 188 | |
| 189 | def scenario_chmod(repo: Repository) -> None: |
nothing calls this directly
no test coverage detected