()
| 570 | seen: list[DispatchedToolCall] = [] |
| 571 | |
| 572 | async def drive() -> None: |
| 573 | async for call in _run_with_fakes(events=events, tools=[], max_idle=0.1): |
| 574 | seen.append(call) |
| 575 | |
| 576 | # If the unowned tool wrongly armed the idle clock the runner would stop |
| 577 | # ~0.1s in and ``drive()`` would return; a correct runner blocks until the |
no test coverage detected