ToolManager with mocked get_all_tools.
()
| 25 | |
| 26 | @pytest.fixture |
| 27 | def manager(): |
| 28 | """ToolManager with mocked get_all_tools.""" |
| 29 | tm = ToolManager(config_file="dummy.json", servers=[]) |
| 30 | tm.get_all_tools = AsyncMock(return_value=_make_tools()) |
| 31 | return tm |
| 32 | |
| 33 | |
| 34 | # ────────────────────────────────────────────────────────────────────────────── |
nothing calls this directly
no test coverage detected