(chat_context)
| 157 | |
| 158 | @pytest.mark.asyncio |
| 159 | async def test_get_server_for_tool(chat_context): |
| 160 | await chat_context.initialize() |
| 161 | |
| 162 | assert await chat_context.get_server_for_tool("srv1.tool1") == "srv1" |
| 163 | assert await chat_context.get_server_for_tool("srv2_tool2") == "srv2" |
| 164 | assert await chat_context.get_server_for_tool("unknown") == "Unknown" |
| 165 | |
| 166 | |
| 167 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected