(repo: Repository)
| 162 | |
| 163 | |
| 164 | def scenario_modify(repo: Repository) -> None: |
| 165 | path = create_file(repo, "f", "Old content") |
| 166 | repo.add(path) |
| 167 | repo.create_commit() |
| 168 | path.write_text("New content") |
| 169 | repo.add(path) |
| 170 | repo.create_commit() |
| 171 | |
| 172 | |
| 173 | def scenario_remove(repo: Repository) -> None: |
nothing calls this directly
no test coverage detected