(self)
| 291 | self.assertFalse(runner.get_loop().get_debug()) |
| 292 | |
| 293 | def test_debug(self): |
| 294 | with asyncio.Runner(debug=True) as runner: |
| 295 | self.assertTrue(runner.get_loop().get_debug()) |
| 296 | |
| 297 | def test_custom_factory(self): |
| 298 | loop = mock.Mock() |
nothing calls this directly
no test coverage detected