Add shopping cart and related models
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from allmende_payment_system.models import Account
|
||||
|
||||
|
||||
def test_unauthorized_access(unauthorized_client):
|
||||
def test_unauthorized_access(unauthorized_client, test_db):
|
||||
response = unauthorized_client.get("/")
|
||||
assert response.status_code == 401
|
||||
|
||||
|
||||
def test_authorized_access(client):
|
||||
def test_authorized_access(client, test_db):
|
||||
response = client.get("/")
|
||||
assert response.status_code == 200
|
||||
|
||||
Reference in New Issue
Block a user