()
| 3380 | |
| 3381 | def test_constructor_empty_sequence_use_running_loop(self): |
| 3382 | async def gather(): |
| 3383 | return asyncio.gather() |
| 3384 | fut = self.one_loop.run_until_complete(gather()) |
| 3385 | self.assertIsInstance(fut, asyncio.Future) |
| 3386 | self.assertIs(fut._loop, self.one_loop) |
no outgoing calls
no test coverage detected