(self)
| 325 | runner.run(123) |
| 326 | |
| 327 | def test_run_future(self): |
| 328 | with asyncio.Runner() as runner: |
| 329 | fut = runner.get_loop().create_future() |
| 330 | fut.set_result('done') |
| 331 | self.assertEqual('done', runner.run(fut)) |
| 332 | |
| 333 | def test_run_awaitable(self): |
| 334 | class MyAwaitable: |
nothing calls this directly
no test coverage detected