Пример #1
0
 def test_get_stock_quantity_from_empty_stock(self):
     quantity = get_stock_quantity(ProductFactory(), Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 0)
Пример #2
0
 def test_get_stock_quantity_for_composite(self):
     quantity = get_stock_quantity(self.composite, Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 10)
Пример #3
0
 def test_get_stock_quantity_from_empty_stock(self):
     quantity = get_stock_quantity(ProductFactory(),
                                   Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 0)
Пример #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)
Пример #5
0
 def test_get_stock_quantity(self):
     quantity = get_stock_quantity(self.product_a,
                                   Location.LOCATION_STORAGE)
     self.assertEqual(quantity, 50)