()
| 109 | |
| 110 | @pytest.fixture |
| 111 | def example_graph(): |
| 112 | G = eg.Graph() |
| 113 | G.add_weighted_edges_from([(1, 2, 3.0), (2, 3, 27.0), (3, 4, 3.0)]) |
| 114 | return G |
| 115 | |
| 116 | |
| 117 | def test_parse_edgelist_no_data(example_graph): |
nothing calls this directly
no test coverage detected