(self)
| 50 | ) |
| 51 | |
| 52 | def test_highest_pair_wins(self): |
| 53 | self.assertEqual( |
| 54 | best_hands(["4S 2H 6S 2D JH", "2S 4H 6C 4D JD"]), ["2S 4H 6C 4D JD"] |
| 55 | ) |
| 56 | |
| 57 | def test_both_hands_have_the_same_pair_high_card_wins(self): |
| 58 | self.assertEqual( |
nothing calls this directly
no test coverage detected