Exemplo n.º 1
0
 def test_equals_2(self):
     self.assertEqual(people_with_age_drink(17), 'drink coke')
Exemplo n.º 2
0
 def test_equals_5(self):
     self.assertEqual(people_with_age_drink(30), 'drink whisky')
Exemplo n.º 3
0
 def test_equals(self):
     self.assertEqual(people_with_age_drink(13), 'drink toddy')
Exemplo n.º 4
0
 def test_equals_4(self):
     self.assertEqual(people_with_age_drink(20), 'drink beer')
Exemplo n.º 5
0
 def test_equals_2(self):
     self.assertEqual(people_with_age_drink(17), "drink coke")
Exemplo n.º 6
0
 def test_equals(self):
     self.assertEqual(people_with_age_drink(13), "drink toddy")
Exemplo n.º 7
0
 def test_equals_5(self):
     self.assertEqual(people_with_age_drink(30), "drink whisky")
Exemplo n.º 8
0
 def test_equals_4(self):
     self.assertEqual(people_with_age_drink(20), "drink beer")