()
| 549 | seen: list[DispatchedToolCall] = [] |
| 550 | |
| 551 | async def drive() -> None: |
| 552 | async for call in _run_with_fakes(events=events, tools=[], max_idle=0.1): |
| 553 | seen.append(call) |
| 554 | |
| 555 | # If the unowned tool wrongly armed the idle clock the runner would stop |
| 556 | # ~0.1s in and ``drive()`` would return; a correct runner blocks until the |
no test coverage detected