(tools: list[Tool])
| 29 | |
| 30 | |
| 31 | def _make_context(tools: list[Tool]) -> ToolContext: |
| 32 | return ToolContext( |
| 33 | workspace_root=Path("/tmp"), |
| 34 | options=ToolUseOptions(tools=tools), |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | def _make_block(name: str, tool_id: str = "tu_1") -> ToolUseBlock: |
no test coverage detected