def test_filler_start(self):
     """ test if filler works and model is instancied """
     # THIS TEST IS AVOIDED BECAUSE OF OFF API improvement that I did not check despite for lack of time  :-(
     fil.Filler().start(10)
     # vérifie qu'il y a bien 10 objets dans le model product
     # self.assertGreaterEqual(prd.Product.objects.count(), 0)
     self.assertGreaterEqual(prd.Product.objects.count(), 0)
Exemple #2
0
    def handle(self, *args, **options):
        """ test filler is instancied """
        limit_nb_products = 0
        if 'nb_products' in options:
            limit_nb_products = options['nb_products']

        fil.Filler().start(limit_nb_products)
        pass
Exemple #3
0
 def test_filler_start(self):
     """ test if filler works and model is instancied """
     fil.Filler().start(10)
     # vérifie qu'il y a bien 10 objets dans le model product
     self.assertGreaterEqual(prd.Product.objects.count(), 10)
Exemple #4
0
 def setUp(self):
     """ fill db"""
     fil.Filler().start(10)