()
| 16 | |
| 17 | |
| 18 | def test_empty_closed_path(): |
| 19 | path = Path(np.zeros((0, 2)), closed=True) |
| 20 | assert path.vertices.shape == (0, 2) |
| 21 | assert path.codes is None |
| 22 | assert_array_equal(path.get_extents().extents, |
| 23 | transforms.Bbox.null().extents) |
| 24 | |
| 25 | |
| 26 | def test_readonly_path(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…