#9 feat(Sale): add external_id field.

This commit is contained in:
2025-07-19 17:28:47 -05:00
parent 62d39c97c0
commit 46e7181653
3 changed files with 20 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ class TestCustomer(TestCase):
customer.save()
self.assertIsInstance(customer, Customer)
self.assertIsNone(customer.external_id)
def test_don_create_customer_without_name(self):
customer = Customer()