コード例 #1
0
ファイル: test_hand.py プロジェクト: henriksu/qwirkle
def test_is_not_empty():
    hand = Hand([Tile(Color.RED, Shape.CIRCLE)])
    assert not hand.is_empty()
コード例 #2
0
ファイル: test_hand.py プロジェクト: henriksu/qwirkle
def test_is_empty():
    hand = Hand([])
    assert hand.is_empty()