(self)
| 984 | run_async(foo()) |
| 985 | |
| 986 | def test_await_3(self): |
| 987 | async def foo(): |
| 988 | await AsyncYieldFrom([1, 2, 3]) |
| 989 | |
| 990 | self.assertEqual(run_async(foo()), ([1, 2, 3], None)) |
| 991 | self.assertEqual(run_async__await__(foo()), ([1, 2, 3], None)) |
| 992 | |
| 993 | def test_await_4(self): |
| 994 | async def bar(): |
nothing calls this directly
no test coverage detected