()
| 131 | |
| 132 | |
| 133 | async def test_directory(): |
| 134 | dir_ = ( |
| 135 | dag.directory() |
| 136 | .with_new_file("hello.txt", "Hello, world!") |
| 137 | .with_new_file("goodbye.txt", "Goodbye, world!") |
| 138 | ) |
| 139 | |
| 140 | entries = await dir_.entries() |
| 141 | |
| 142 | assert entries == ["goodbye.txt", "hello.txt"] |
| 143 | |
| 144 | |
| 145 | async def test_host_directory(): |
nothing calls this directly
no test coverage detected