(self)
| 287 | class RunnerTests(BaseTest): |
| 288 | |
| 289 | def test_non_debug(self): |
| 290 | with asyncio.Runner(debug=False) as runner: |
| 291 | self.assertFalse(runner.get_loop().get_debug()) |
| 292 | |
| 293 | def test_debug(self): |
| 294 | with asyncio.Runner(debug=True) as runner: |
nothing calls this directly
no test coverage detected