(self)
| 8 | class testWithClause(FlowTestsBase): |
| 9 | |
| 10 | def __init__(self): |
| 11 | self.env = Env(decodeResponses=True) |
| 12 | global redis_graph |
| 13 | redis_con = self.env.getConnection() |
| 14 | redis_graph = Graph(redis_con, "G") |
| 15 | self.populate_graph() |
| 16 | |
| 17 | def populate_graph(self): |
| 18 | # Populate a graph with two labels, each containing the same property values but different keys. |
nothing calls this directly
no test coverage detected