(self)
| 24 | await asyncio.to_thread(raise_runtime) |
| 25 | |
| 26 | async def test_to_thread_once(self): |
| 27 | func = mock.Mock() |
| 28 | |
| 29 | await asyncio.to_thread(func) |
| 30 | func.assert_called_once() |
| 31 | |
| 32 | async def test_to_thread_concurrent(self): |
| 33 | calls = [] |
nothing calls this directly
no test coverage detected