()
| 90 | |
| 91 | |
| 92 | def test_plot_multilinestring(): |
| 93 | line = MultiLineString( |
| 94 | [LineString([(0, 0), (1, 0), (1, 1)]), LineString([(2, 2), (3, 3)])] |
| 95 | ) |
| 96 | artist, _ = plot_line(line) |
| 97 | plot_coords = artist.get_path().vertices |
| 98 | assert_allclose(plot_coords, get_coordinates(line)) |
| 99 | |
| 100 | |
| 101 | def test_plot_points(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…