(self)
| 47 | |
| 48 | @async_test |
| 49 | async def test_async_error(self): |
| 50 | async def err(): |
| 51 | raise ValueError("an error") |
| 52 | |
| 53 | with expect_raises_message(ValueError, "an error"): |
| 54 | await greenlet_spawn(go, run1, err) |
| 55 | |
| 56 | @async_test |
| 57 | async def test_propagate_cancelled(self): |
nothing calls this directly
no test coverage detected