예제 #1
0
 def test_poker_example_39(self):
     ot = ["5S", "5Y", "3F", "6C", "KS"]
     actual = poker.check_card(ot)
     expected = True
     self.assertEqual(actual, expected)
예제 #2
0
 def test_poker_example_38(self):
     hc = ["5S", "4H", "2D", "9C", "7S"]
     actual = poker.check_card(hc)
     expected = False
     self.assertEqual(actual, expected)