(self)
| 9 | |
| 10 | class testBoundVariables(FlowTestsBase): |
| 11 | def __init__(self): |
| 12 | self.env = Env(decodeResponses=True) |
| 13 | global redis_graph |
| 14 | redis_con = self.env.getConnection() |
| 15 | redis_graph = Graph(redis_con, GRAPH_ID) |
| 16 | self.populate_graph() |
| 17 | |
| 18 | def populate_graph(self): |
| 19 | global redis_graph |
nothing calls this directly
no test coverage detected