(self)
| 120 | class QueueGetTests(unittest.IsolatedAsyncioTestCase): |
| 121 | |
| 122 | async def test_blocking_get(self): |
| 123 | q = asyncio.Queue() |
| 124 | q.put_nowait(1) |
| 125 | |
| 126 | self.assertEqual(1, await q.get()) |
| 127 | |
| 128 | async def test_get_with_putters(self): |
| 129 | loop = asyncio.get_running_loop() |
nothing calls this directly
no test coverage detected