()
| 754 | |
| 755 | |
| 756 | def test_removal(): |
| 757 | import matplotlib.pyplot as plt |
| 758 | import mpl_toolkits.axisartist as AA |
| 759 | fig = plt.figure() |
| 760 | ax = host_subplot(111, axes_class=AA.Axes, figure=fig) |
| 761 | col = ax.fill_between(range(5), 0, range(5)) |
| 762 | fig.canvas.draw() |
| 763 | col.remove() |
| 764 | fig.canvas.draw() |
| 765 | |
| 766 | |
| 767 | @image_comparison(['anchored_locator_base_call.png'], style="mpl20") |
nothing calls this directly
no test coverage detected
searching dependent graphs…