(self)
| 12 | class testSocialFlow(FlowTestsBase): |
| 13 | |
| 14 | def __init__(self): |
| 15 | self.env = Env(decodeResponses=True) |
| 16 | global redis_graph |
| 17 | redis_con = self.env.getConnection() |
| 18 | redis_graph = Graph(redis_con, social_utils.graph_name) |
| 19 | social_utils.populate_graph(redis_con, redis_graph) |
| 20 | |
| 21 | def assert_reversed_pattern(self, query, resultset): |
| 22 | # Test reversed pattern query. |
nothing calls this directly
no test coverage detected