Django - Testing Django Applications
What is wrong with this factory code?
class ProductFactory(factory.DjangoModelFactory):
class Meta:
model = Product
name = factory.Faker('product_name')
price = factory.Faker('float')