()
| 530 | seen: list[DispatchedToolCall] = [] |
| 531 | |
| 532 | async def drive() -> None: |
| 533 | async for call in _run_with_fakes(events=events, tools=[], max_idle=0.1): |
| 534 | seen.append(call) |
| 535 | |
| 536 | # If the unowned tool wrongly armed the idle clock the runner would stop |
| 537 | # ~0.1s in and ``drive()`` would return; a correct runner blocks until the |
no test coverage detected