(self)
| 689 | self.assertEqual(result, "completed") |
| 690 | |
| 691 | def test_async_generator_anext(self): |
| 692 | async def agen(): |
| 693 | yield 1 |
| 694 | yield 2 |
| 695 | self.check_async_iterator_anext(agen) |
| 696 | |
| 697 | def test_python_async_iterator_anext(self): |
| 698 | class MyAsyncIter: |
nothing calls this directly
no test coverage detected