Files
nanobot/tests/tools/test_message_tool.py
2026-03-24 15:12:22 +08:00

11 lines
302 B
Python

import pytest
from nanobot.agent.tools.message import MessageTool
@pytest.mark.asyncio
async def test_message_tool_returns_error_when_no_target_context() -> None:
tool = MessageTool()
result = await tool.execute(content="test")
assert result == "Error: No target channel/chat specified"