コード例 #1
0
ファイル: test_drink_about.py プロジェクト: saidamir/CodeWars
 def test_equals_2(self):
     self.assertEqual(people_with_age_drink(17), 'drink coke')
コード例 #2
0
ファイル: test_drink_about.py プロジェクト: saidamir/CodeWars
 def test_equals_5(self):
     self.assertEqual(people_with_age_drink(30), 'drink whisky')
コード例 #3
0
ファイル: test_drink_about.py プロジェクト: saidamir/CodeWars
 def test_equals(self):
     self.assertEqual(people_with_age_drink(13), 'drink toddy')
コード例 #4
0
ファイル: test_drink_about.py プロジェクト: saidamir/CodeWars
 def test_equals_4(self):
     self.assertEqual(people_with_age_drink(20), 'drink beer')
コード例 #5
0
 def test_equals_2(self):
     self.assertEqual(people_with_age_drink(17), "drink coke")
コード例 #6
0
 def test_equals(self):
     self.assertEqual(people_with_age_drink(13), "drink toddy")
コード例 #7
0
 def test_equals_5(self):
     self.assertEqual(people_with_age_drink(30), "drink whisky")
コード例 #8
0
 def test_equals_4(self):
     self.assertEqual(people_with_age_drink(20), "drink beer")