()
| 29 | |
| 30 | |
| 31 | async def test_git_repository(): |
| 32 | repo = dag.git("https://github.com/dagger/dagger").tag("v0.3.0").tree() |
| 33 | readme = await repo.file("README.md").contents() |
| 34 | |
| 35 | assert readme.split("\n")[0] == "## What is Dagger?" |
| 36 | |
| 37 | |
| 38 | async def test_container_build(): |