示例#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)