(self)
| 34 | assert info_dict["Number of connected components"] == 2 |
| 35 | |
| 36 | def test_nodes(self): |
| 37 | assert nodes_equal(self.G.nodes(), list(nx.nodes(self.G))) |
| 38 | assert nodes_equal(self.DG.nodes(), list(nx.nodes(self.DG))) |
| 39 | |
| 40 | def test_edges(self): |
| 41 | assert edges_equal(self.G.edges(), list(nx.edges(self.G))) |
nothing calls this directly
no test coverage detected