(self)
| 8 | |
| 9 | class testGraphMergeFlow(FlowTestsBase): |
| 10 | def __init__(self): |
| 11 | self.env = Env(decodeResponses=True) |
| 12 | global redis_graph |
| 13 | global graph_2 |
| 14 | redis_con = self.env.getConnection() |
| 15 | redis_graph = Graph(redis_con, "G") |
| 16 | graph_2 = Graph(redis_con, "H") |
| 17 | |
| 18 | # Create a single node without any labels or properties. |
| 19 | def test01_single_node_with_label(self): |