Begin implementing billing

This commit is contained in:
2023-02-24 07:20:31 +00:00
parent 0937f7299a
commit ac4c248175
10 changed files with 268 additions and 261 deletions

View File

@@ -5,6 +5,15 @@ from django.test import TestCase
from core.models import TradingTime, User
class ModelTestCase(TestCase):
def setUp(self):
# Create a test user
self.user = User.objects.create_user(
username="testuser",
email="testuser@example.com",
)
class MarketTestCase(TestCase):
def setUp(self):
# Create a test user