"""测试 Registry""" import pytest from tool_agent.registry.registry import ToolRegistry class TestRegistry: def test_registry_init(self): r = ToolRegistry() assert r.list_all() is not None