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