def test_free_node():
    v = Node.new()
    v.free()
def test_bad_meth_to_create_non_refcounted_object():
    with pytest.raises(RuntimeError):
        Node()