()
| 3415 | |
| 3416 | def test_constructor_empty_sequence_use_running_loop(self): |
| 3417 | async def gather(): |
| 3418 | return asyncio.gather() |
| 3419 | fut = self.one_loop.run_until_complete(gather()) |
| 3420 | self.assertIsInstance(fut, asyncio.Future) |
| 3421 | self.assertIs(fut._loop, self.one_loop) |
no outgoing calls
no test coverage detected