(self)
| 295 | self.assertTrue(runner.get_loop().get_debug()) |
| 296 | |
| 297 | def test_custom_factory(self): |
| 298 | loop = mock.Mock() |
| 299 | with asyncio.Runner(loop_factory=lambda: loop) as runner: |
| 300 | self.assertIs(runner.get_loop(), loop) |
| 301 | |
| 302 | def test_run(self): |
| 303 | async def f(): |