(self)
| 7 | |
| 8 | class testShortestPath(FlowTestsBase): |
| 9 | def __init__(self): |
| 10 | self.env = Env(decodeResponses=True) |
| 11 | global redis_graph |
| 12 | redis_con = self.env.getConnection() |
| 13 | redis_graph = Graph(redis_con, GRAPH_ID) |
| 14 | self.populate_graph() |
| 15 | |
| 16 | def populate_graph(self): |
| 17 | # Construct a graph with the form: |
nothing calls this directly
no test coverage detected