def test_mill_grains(self):
     m = MillingMachine()
     rm = recipe_mashing()
     self.assertEqual(m.mill_time, rm.mill_time)
Ejemplo n.º 2
0
 def test_separate_wort(self):
     w = Wort()
     rm = recipe_mashing()
     self.assertEqual(w.separation_time, rm.separation_time)
 def test_check_grains_weight(self):
     m = MillingMachine()
     rm = recipe_mashing()
     self.assertEqual(m.grains_weight, rm.grains_weight)
Ejemplo n.º 4
0
 def test_check_water_volume(self):
     w = Wort()
     rm = recipe_mashing()
     self.assertEqual(w.water_volume, rm.water_amount)
Ejemplo n.º 5
0
 def test_check_wort_volume(self):
     w = Wort()
     rm = recipe_mashing()
     self.assertEqual(w.wort_volume, rm.wort_volume)
Ejemplo n.º 6
0
 def test_check_hot_water(self):
     w = Wort()
     rm = recipe_mashing()
     self.assertEqual(w.hot_water_temp, rm.water_temp)
Ejemplo n.º 7
0
 def test_check_water_volume(self):
     hlt = HotLiquorTank()
     rm = recipe_mashing()
     self.assertEqual(hlt.water_amount, rm.water_amount)
Ejemplo n.º 8
0
 def test_check_water_temp(self):
     hlt = HotLiquorTank()
     rm = recipe_mashing()
     self.assertEqual(hlt.water_temp, rm.water_temp)
 def test_stir_mash(self):
     st = SpargingTank()
     rm = recipe_mashing()
     self.assertEqual(st.stir_time, rm.stir_time)
 def test_add_water(self):
     st = SpargingTank()
     rm = recipe_mashing()
     self.assertEqual(st.water_temp, rm.water_temp)