Ejemplo n.º 1
0
def test_aliases():
    g = to_networkx({'x': 1, 'y': 'x'})
    assert 'y' in g.edge['x']
Ejemplo n.º 2
0
def test_np_graph():
    g = to_networkx({'x': np.array([[1, 2]])})
    assert g.node['x']['label'] == 'x=[[1 2]]' 
Ejemplo n.º 3
0
def test_to_networkx():
    g = to_networkx(dsk)
    assert isinstance(g, nx.DiGraph)
    assert all(n in g.node for n in ['x', 'a', 'z', 'b', 'y'])