mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-09-17 05:32:20 +02:00
9 lines
260 B
Python
9 lines
260 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_chat_route_forwards_tool_routing_audit_events():
|
|
source = (Path(__file__).parents[1] / "routes" / "chat_routes.py").read_text()
|
|
|
|
assert '"tool_routing_audit"' in source
|
|
assert '"tool_resolution_audit"' in source
|