(self)
| 112 | assert DG is RDG._graph |
| 113 | |
| 114 | def test_copy(self): |
| 115 | G = self.Graph() |
| 116 | G.add_node(0) |
| 117 | G.add_edge(1, 2) |
| 118 | self.add_attributes(G) |
| 119 | # deep copy |
| 120 | H = G.copy() |
| 121 | self.graphs_equal(H, G) |
| 122 | |
| 123 | def test_class_copy(self): |
| 124 | G = self.Graph() |
nothing calls this directly
no test coverage detected