Simplify to memory system api
This commit is contained in:
7
tests/test_memory_system_server.py
Normal file
7
tests/test_memory_system_server.py
Normal file
@ -0,0 +1,7 @@
|
||||
def test_memory_system_server_exposes_routes():
|
||||
from memory_system_api.server import app
|
||||
|
||||
paths = {route.path for route in app.routes}
|
||||
assert "/memory-system/messages" in paths
|
||||
assert "/memory-system/search" in paths
|
||||
assert "/memory-system/users/{user_id}/profile" in paths
|
||||
Reference in New Issue
Block a user