def test_player_hit_effect_on_count(count, hand, player: Player): for c in hand: player.hit(c) assert count == player.count()
def test_player_hit_effect_on_hand(hand, player: Player): for c in hand: player.hit(c) assert tuple(hand) == player.hand