18 lines
697 B
Python
18 lines
697 B
Python
def test_app_startup(client):
|
|
"""Test that the application starts up correctly."""
|
|
response = client.get("/")
|
|
# Application should respond (even if it's a 404)
|
|
assert response.status_code in [404, 200]
|
|
|
|
def test_router_includes():
|
|
"""Test that all routers are included in the app."""
|
|
from app.main import app
|
|
routes = [route.path for route in app.routes]
|
|
|
|
# Check that router prefixes are present
|
|
assert any("/users" in route for route in routes)
|
|
assert any("/cards" in route for route in routes)
|
|
assert any("/groups" in route for route in routes)
|
|
assert any("/aa" in route for route in routes)
|
|
assert any("/token" in route for route in routes)
|