Esempio n. 1
0
 def test_get_stock_quantity_from_empty_stock(self):
     quantity = get_stock_quantity(ProductFactory(), Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 0)
Esempio n. 2
0
 def test_get_stock_quantity_for_composite(self):
     quantity = get_stock_quantity(self.composite, Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 10)
Esempio n. 3
0
 def test_get_stock_quantity_from_empty_stock(self):
     quantity = get_stock_quantity(ProductFactory(),
                                   Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 0)
Esempio n. 4
0
 def test_get_stock_quantity_for_single_product(self):
     quantity = get_stock_quantity(self.product_a, Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 50)
Esempio n. 5
0
 def test_get_stock_quantity(self):
     quantity = get_stock_quantity(self.product_a,
                                   Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 50)