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)
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)