()
| 159 | |
| 160 | |
| 161 | def test_arc_spine_inner_no_axis(): |
| 162 | # Backcompat: smoke test that inner arc spine does not need a registered |
| 163 | # axis in order to be drawn |
| 164 | fig = plt.figure() |
| 165 | ax = fig.add_subplot(projection="polar") |
| 166 | inner_spine = ax.spines["inner"] |
| 167 | inner_spine.register_axis(None) |
| 168 | assert ax.spines["inner"].axis is None |
| 169 | |
| 170 | fig.draw_without_rendering() |
| 171 | |
| 172 | |
| 173 | def test_spine_set_bounds_with_none(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…