(repo: Repository, name: str = "f", content: str = "Hello\n")
| 130 | |
| 131 | |
| 132 | def create_file(repo: Repository, name: str = "f", content: str = "Hello\n") -> Path: |
| 133 | path = repo.path / name |
| 134 | path.write_text(content) |
| 135 | return path |
| 136 | |
| 137 | |
| 138 | def file_append(path: Path, content: str) -> None: |
no outgoing calls
no test coverage detected