Ejemplo n.º 1
0
def test_graph():
    test_dict = {
        1: {2: 3, 3: 5},
        2: {1: 3},
        3: {2: 7, 10: 8},
        10: {}
    }
    test_graph = SimpleGraph()
    test_graph._graph_content = test_dict
    return test_graph