()
| 20 | |
| 21 | def test_get_event_loop_in_sub_thread(self): |
| 22 | def target(): |
| 23 | loop = get_event_loop() |
| 24 | self.assertIsInstance(loop, asyncio.AbstractEventLoop) |
| 25 | loop.close() |
| 26 | |
| 27 | thread = threading.Thread(target=target) |
| 28 | thread.start() |
nothing calls this directly
no test coverage detected