예제 #1
0
 def test_give_full_house_should_false(self):
     cards = ["TC", "TD", "TH", "AC", "AH"]
     answer = pk.check_four_of_kind(cards)
     self.assertEqual(False, answer)
예제 #2
0
 def test_give_T_T_T_T_A_shoud_true(self):
     cards = ["TC", "TD", "TH", "TS", "AH"]
     answer = pk.check_four_of_kind(cards)
     self.assertEqual(True, answer)