项目文件夹

文件
2026-07-13 11:59:58 +08:00

8 行
211 B
Python

from app.gateway.app import create_app
def test_gateway_app_includes_scheduled_task_router():
app = create_app()
paths = {route.path for route in app.routes}
assert "/api/scheduled-tasks" in paths