(self)
| 911 | self.assertEqual(CHK, 1) |
| 912 | |
| 913 | def test_coro_wrapper_send_tuple(self): |
| 914 | async def foo(): |
| 915 | return (10,) |
| 916 | |
| 917 | result = run_async__await__(foo()) |
| 918 | self.assertEqual(result, ([], (10,))) |
| 919 | |
| 920 | def test_coro_wrapper_send_stop_iterator(self): |
| 921 | async def foo(): |
nothing calls this directly
no test coverage detected