(self)
| 12 | self.env = Env(decodeResponses=True) |
| 13 | |
| 14 | def setUp(self): |
| 15 | global redis_graph |
| 16 | redis_con = self.env.getConnection() |
| 17 | redis_graph = Graph(redis_con, social_utils.graph_name) |
| 18 | social_utils.populate_graph(redis_con, redis_graph) |
| 19 | self.build_indices() |
| 20 | |
| 21 | def tearDown(self): |
| 22 | self.env.cmd('flushall') |
nothing calls this directly
no test coverage detected