(self)
| 8 | |
| 9 | class testAllShortestPaths(): |
| 10 | def __init__(self): |
| 11 | self.env = Env(decodeResponses=True) |
| 12 | redis_con = self.env.getConnection() |
| 13 | self.graph = Graph(redis_con, "path_algos") |
| 14 | self.populate_graph() |
| 15 | self.init() |
| 16 | |
| 17 | def populate_graph(self): |
| 18 | create_node_exact_match_index(self.graph, 'L', 'v', sync=True) |
nothing calls this directly
no test coverage detected