()
| 365 | return_value=fake_registry, |
| 366 | ): |
| 367 | async def drive(): |
| 368 | updates = [] |
| 369 | async for update in run_tool_use( |
| 370 | _ToolUse("HiddenTool", {}), |
| 371 | AssistantMessage(content="using a tool"), |
| 372 | deny_all, |
| 373 | ctx, |
| 374 | ): |
| 375 | updates.append(update) |
| 376 | return updates |
| 377 | |
| 378 | updates = _run(drive()) |
| 379 | self.assertFalse(ran) |
nothing calls this directly
no test coverage detected