mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 14:19:55 +02:00
13 lines
258 B
Python
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
|