Return a dict of tool name → raw function from a freshly built server.
()
| 33 | |
| 34 | @pytest.fixture |
| 35 | def tool_fns(): |
| 36 | """Return a dict of tool name → raw function from a freshly built server.""" |
| 37 | server = build_server() |
| 38 | return {t.name: t.fn for t in server._tool_manager.list_tools()} |
| 39 | |
| 40 | |
| 41 | PNG_FAKE = b"\x89PNG\r\n\x1a\nFAKE" |
nothing calls this directly
no test coverage detected