blitz_api/tests/routers/test_system.py
2026-02-03 11:06:06 +01:00

13 lines
304 B
Python

from starlette.testclient import TestClient
from app.main import app
from tests.routers.utils import call_route
client = TestClient(app)
def test_route_authentications_latest():
prefixes = ["/system"]
for prefix in prefixes:
call_route(client, f"{prefix}/refresh-token", method="p")