(self)
| 13 | |
| 14 | class testIndexUpdatesFlow(FlowTestsBase): |
| 15 | def __init__(self): |
| 16 | self.env = Env(decodeResponses=True) |
| 17 | global redis_graph |
| 18 | self.redis_con = self.env.getConnection() |
| 19 | redis_graph = Graph(self.redis_con, GRAPH_ID) |
| 20 | self.populate_graph() |
| 21 | self.build_indices() |
| 22 | |
| 23 | def new_node(self): |
| 24 | return Node(label = labels[node_ctr % 2], |
nothing calls this directly
no test coverage detected