def test_is_not_empty(): hand = Hand([Tile(Color.RED, Shape.CIRCLE)]) assert not hand.is_empty()
def test_is_empty(): hand = Hand([]) assert hand.is_empty()