()
| 872 | |
| 873 | |
| 874 | def test_degenerate_polygon(): |
| 875 | point = [0, 0] |
| 876 | correct_extents = Bbox([point, point]).extents |
| 877 | assert np.all(Polygon([point]).get_extents().extents == correct_extents) |
| 878 | |
| 879 | |
| 880 | @pytest.mark.parametrize('kwarg', ('edgecolor', 'facecolor')) |
nothing calls this directly
no test coverage detected
searching dependent graphs…