コード例 #1
0
ファイル: evaluator-tests.py プロジェクト: dgoodwin/rounder
 def testIsNotTrips(self):
     hand = FullHand(("as", "9s"), ("qs", "jd", "4s", "10d", "8s"))
     self.assertFalse(hand.is_trips())
コード例 #2
0
ファイル: evaluator-tests.py プロジェクト: dgoodwin/rounder
 def testIsTrips(self):
     hand = FullHand(("as", "js"), ("ad", "kc", "ac", "10d", "9s"))
     self.assertTrue(hand.is_trips())