Files
odysseus/tests/test_agent_tools_import_isolation.py
T

10 lines
338 B
Python

"""Collection must not replace the agent-tools package with a test double."""
import src.agent_tools
from src.agent_tools.web_tools import PrivateBrowserTool
def test_agent_tools_remains_a_real_package_after_test_collection():
assert src.agent_tools.__path__
assert PrivateBrowserTool.__module__ == "src.agent_tools.web_tools"