(_input: dict[str, Any], _context: ToolContext)
| 128 | ran: list = [] |
| 129 | |
| 130 | def _call(_input: dict[str, Any], _context: ToolContext) -> ToolResult: |
| 131 | ran.append(True) |
| 132 | return ToolResult(name="Bash", output="should not happen") |
| 133 | |
| 134 | tool = _stub("Bash", _call) |
| 135 | ctx = _make_ctx(tmp_path, [tool]) |
nothing calls this directly
no test coverage detected