mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-09-16 21:22:20 +02:00
7 lines
245 B
Python
7 lines
245 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_chat_route_forwards_model_request_snapshot_event():
|
|
source = (Path(__file__).resolve().parents[1] / "routes" / "chat_routes.py").read_text(encoding="utf-8")
|
|
assert '"model_request_snapshot"' in source
|