(hand, expected)
| 171 | |
| 172 | @pytest.mark.parametrize(("hand", "expected"), TEST_TYPES) |
| 173 | def test_hand_values(hand, expected): |
| 174 | assert PokerHand(hand)._hand_type == expected |
| 175 | |
| 176 | |
| 177 | @pytest.mark.parametrize(("hand", "other", "expected"), TEST_COMPARE) |