()
| 45 | |
| 46 | |
| 47 | async def run(): |
| 48 | tasks = [ |
| 49 | asyncio.create_task(c) |
| 50 | for c in [a(SLEEP_UNIT * 0, "hello1"), a(SLEEP_UNIT * 1, "hello2"), a(SLEEP_UNIT * 2, "hello3"), a(SLEEP_UNIT * 3, "hello4")] |
| 51 | ] |
| 52 | await asyncio.wait(tasks) |
| 53 | |
| 54 | expected = [ |
| 55 | 1, |
no test coverage detected