コード例 #1
0
ファイル: test_node.py プロジェクト: hbradleyiii/ext_pylib
def test_node_remove():
    """Test that Node throws an error when calling remove()."""
    node = Node({'path' : '/the/path'})
    with pytest.raises(NotImplementedError):
        node.remove()