예제 #1
0
 def testIsRoyalNotRoyal(self):
     hand = FullHand(("as", "kd"), ("qd", "jd", "10d", "10s", "7h"))
     self.assertFalse(hand.is_royal())
예제 #2
0
 def testIsStraightFlushButNotRoyal(self):
     hand = FullHand(("as", "6d"), ("5d", "4d", "3d", "2d"))
     self.assertFalse(hand.is_royal())