(mock_llm)
| 203 | |
| 204 | @pytest.mark.anyio |
| 205 | async def test_executor_unknown_server(mock_llm): |
| 206 | executor = Executor(mock_llm(""), server_paths={}) |
| 207 | |
| 208 | plan = Plan(steps=[_make_step(1)], raw="") |
| 209 | with _patch_mcp()[0], _patch_mcp()[1]: |
| 210 | results = await executor.execute_plan(plan, "Q") |
| 211 | |
| 212 | assert results[0].success is False |
| 213 | assert "iot" in results[0].error |
| 214 | |
| 215 | |
| 216 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected