feat: add basic model, views for Stores

This commit is contained in:
Lance Edgar 2025-01-27 18:15:07 -06:00
parent 76075f146c
commit 3ef84ff706
11 changed files with 348 additions and 1 deletions

View file

@ -0,0 +1,15 @@
# -*- coding: utf-8; -*-
from wuttjamaican.testing import DataTestCase
from sideshow.db.model import stores as mod
class TestPendingCustomer(DataTestCase):
def test_str(self):
store = mod.Store()
self.assertEqual(str(store), "")
store.name = "Acme Goods"
self.assertEqual(str(store), "Acme Goods")