8 lines
211 B
Python
8 lines
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
|