Files
agentic_security/tests/test_mcp.py
T
Alexander Myasoedov 73184e3454 fix(simplify tests):
2025-04-07 14:29:41 +03:00

13 lines
258 B
Python

import pytest
from agentic_security.mcp.client import run
@pytest.mark.asyncio
async def test_mcp_echo_tool():
"""Test the echo tool functionality"""
prompts, resources, tools = await run()
assert prompts
assert resources
assert tools