mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2025-06-05 21:59:23 +02:00
Fix tests
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user