(repo: Repository)
| 187 | |
| 188 | |
| 189 | def scenario_chmod(repo: Repository) -> None: |
| 190 | path = create_file(repo) |
| 191 | repo.add(path) |
| 192 | repo.create_commit() |
| 193 | path.chmod(0o755) |
| 194 | repo.add(path) |
| 195 | repo.create_commit() |
| 196 | |
| 197 | |
| 198 | def scenario_rename_chmod_modify(repo: Repository) -> None: |
nothing calls this directly
no test coverage detected