mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 17:35:27 +08:00
6 lines
202 B
Python
6 lines
202 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://sl.test/auth/login"
|