Add shopping cart and related models

This commit is contained in:
2025-11-11 12:08:06 +01:00
parent b3166811e5
commit f4618f4d05
8 changed files with 148 additions and 41 deletions

View File

@@ -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