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