Thomas Sileo 2022-07-10 11:07:36 +02:00
rodzic c10a27cc08
commit e8374de0c7
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -19,7 +19,9 @@ def test_admin_endpoints_are_authenticated(client: TestClient) -> None:
# Admin routes should redirect to the login page
assert resp.status_code == 302, f"{method} {route.path} is unauthenticated"
assert resp.headers.get("Location") == "http://testserver/admin/login"
assert resp.headers.get("Location", "").startswith(
"http://testserver/admin/login"
)
routes_tested.append((method, route.path))
assert len(routes_tested) > 0