Example #1
0
 def test_unit_size_plural_bad_string_quantity():
     Ingredient.unit_size_plural("sack", "sdf")
Example #2
0
 def test_unit_size_plural_neg_quantity():
     Ingredient.unit_size_plural("sack", -2)
Example #3
0
 def test_unit_size_plural_zero_quantity():
     Ingredient.unit_size_plural("sack", 0)
Example #4
0
 def test_unit_size_plural_bad_unit_size():
     Ingredient.unit_size_plural("bad unit size", 5)