(manager)
| 76 | |
| 77 | @pytest.mark.asyncio |
| 78 | async def test_get_unique_tools(manager): |
| 79 | unique = await manager.get_unique_tools() |
| 80 | names = {(t.namespace, t.name) for t in unique} |
| 81 | assert names == {("ns1", "t1"), ("ns2", "t2")} |
| 82 | |
| 83 | |
| 84 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected