(arrow_modern_graph)
| 626 | |
| 627 | |
| 628 | def test_transform(arrow_modern_graph): |
| 629 | g = arrow_modern_graph.to_undirected() |
| 630 | assert not g.is_directed() |
| 631 | |
| 632 | g2 = g.to_directed() |
| 633 | assert g2.is_directed() |
| 634 | |
| 635 | |
| 636 | def test_add_column(ldbc_graph, arrow_modern_graph): |
nothing calls this directly
no test coverage detected