(self)
| 17 | # Test over all procedure behavior in addition to procedure specifics. |
| 18 | class testProcedures(FlowTestsBase): |
| 19 | def __init__(self): |
| 20 | self.env = Env(decodeResponses=True) |
| 21 | global redis_con |
| 22 | global redis_graph |
| 23 | redis_con = self.env.getConnection() |
| 24 | redis_graph = Graph(redis_con, GRAPH_ID) |
| 25 | self.populate_graph() |
| 26 | |
| 27 | def populate_graph(self): |
| 28 | if redis_con.exists(GRAPH_ID): |
nothing calls this directly
no test coverage detected