Remove register URL | Closes #2

This commit is contained in:
PV Tejas 2026-03-01 19:30:52 +05:30
parent ed71714a79
commit 67953ac42e
6 changed files with 10 additions and 4 deletions

View file

@ -4,7 +4,7 @@ from flaskr.db import get_db
def test_index(client, auth):
response = client.get('/')
assert b"Log In" in response.data
assert b"Register" in response.data
assert b"Register" not in response.data
auth.login()
response = client.get('/')