コード例 #1
0
ファイル: evaluator-tests.py プロジェクト: dgoodwin/rounder
 def testIsRoyalNotRoyal(self):
     hand = FullHand(("as", "kd"), ("qd", "jd", "10d", "10s", "7h"))
     self.assertFalse(hand.is_royal())
コード例 #2
0
ファイル: evaluator-tests.py プロジェクト: dgoodwin/rounder
 def testIsStraightFlushButNotRoyal(self):
     hand = FullHand(("as", "6d"), ("5d", "4d", "3d", "2d"))
     self.assertFalse(hand.is_royal())