예제 #1
0
 def test_three_of_kind_should_false(self):
     cards = ["AC", "AD", "AH", "4C", "5H"]
     answer = pk.check_two_pairs(cards)
     self.assertEqual(False, answer)
예제 #2
0
 def test_give_full_house_should_false(self):
     cards = ["2H", "2D", "3C", "3C", "3S"]
     answer = pk.check_two_pairs(cards)
     self.assertEqual(False, answer)
예제 #3
0
 def test_check_have_two_pair2_should_true(self):
     cards = ["2H", "2D"] + ["3H", "4C", "3C"]
     answer = pk.check_two_pairs(cards)
     self.assertEqual(True, answer)
예제 #4
0
 def test_give_four_of_kind_should_false(self):
     cards = ["2H", "2D", "2C", "2S", "3C"]
     answer = pk.check_two_pairs(cards)
     self.assertEqual(False, answer)
예제 #5
0
 def test_give_one_pair_should_false(self):
     cards = ["2H", "2D"] + ["7H", "3C", "4C"]
     answer = pk.check_two_pairs(cards)
     self.assertEqual(False, answer)