def testF_TakeHighestFlush(self): '''make sure to take the highest flush''' hand = cards('1C,2C,4C,5C,7C,9C') self.assertEqual(flush(hand), cards('9C,7C,5C,4C,2C'))
def testE_Flush(self): '''a flush''' hand = cards('2C,4C,6C,8C,10C,11D,12D,5H') self.assertEqual(flush(hand), cards('10C,8C,6C,4C,2C'))