Example #1
0
def node():
    tmpnode = Node('testnode')
    tmpnode.setId(1234)

    return tmpnode
Example #2
0
def test_empty_node():
    assert not Node().getName()
Example #3
0
def test_node_setBootFrom():
    with pytest.raises(ValueError):
        Node(name='mike').setBootFrom('mmmm')