everythin working except for creation product insance with category

This commit is contained in:
Sam
2021-01-26 11:20:48 +00:00
parent 0e5aee73c3
commit 4437037710
4 changed files with 99 additions and 92 deletions

View File

@@ -17,7 +17,7 @@ class ProductFactory(DjangoModelFactory):
name = FuzzyText(prefix='NAME_', length=10)
description = FuzzyText(prefix='DECRIPTION', length=100)
image = None
url = FuzzyText(prefix='http://WEB_LINK_', suffix='.test', length=10)
url = FuzzyText(prefix='http://WEB-LINK-', suffix='.test', length=10)
price = FuzzyDecimal(low=1.00)
shipping_cost = FuzzyDecimal(low=1.00)
shipping_terms = FuzzyText(prefix='SHIPPING_TERMS', length=100)