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