mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-16 12:20:14 +02:00
9 lines
301 B
Python
9 lines
301 B
Python
from starlette.testclient import TestClient
|
|
from tests.routers.utils import call_route
|
|
|
|
|
|
def test_route_authentications_latest(test_client: TestClient):
|
|
prefixes = ["/latest/system", "/v1/system"]
|
|
|
|
for prefix in prefixes:
|
|
call_route(test_client, f"{prefix}/refresh-token", method="p")
|