mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
7 lines
204 B
Python
7 lines
204 B
Python
|
def test_redirect_login_page(flask_client):
|
||
|
"""Start with a blank database."""
|
||
|
|
||
|
rv = flask_client.get("/")
|
||
|
assert rv.status_code == 302
|
||
|
assert rv.location == "http://localhost/auth/login"
|