(self)
| 78 | |
| 79 | @async_test |
| 80 | async def test_sync_error(self): |
| 81 | def go(): |
| 82 | await_(run1()) |
| 83 | raise ValueError("sync error") |
| 84 | |
| 85 | with expect_raises_message(ValueError, "sync error"): |
| 86 | await greenlet_spawn(go) |
| 87 | |
| 88 | @async_test |
| 89 | async def test_await_only_no_greenlet(self): |
nothing calls this directly
no test coverage detected