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