(hand, other, expected)
| 176 | |
| 177 | @pytest.mark.parametrize(("hand", "other", "expected"), TEST_COMPARE) |
| 178 | def test_compare_simple(hand, other, expected): |
| 179 | assert PokerHand(hand).compare_with(PokerHand(other)) == expected |
| 180 | |
| 181 | |
| 182 | @pytest.mark.parametrize(("hand", "other", "expected"), generate_random_hands()) |
nothing calls this directly
no test coverage detected