()
| 827 | |
| 828 | |
| 829 | def test_contour_clip_path(): |
| 830 | fig, ax = plt.subplots() |
| 831 | data = [[0, 1], [1, 0]] |
| 832 | circle = mpatches.Circle([0.5, 0.5], 0.5, transform=ax.transAxes) |
| 833 | cs = ax.contour(data, clip_path=circle) |
| 834 | assert cs.get_clip_path() is not None |
| 835 | |
| 836 | |
| 837 | def test_bool_autolevel(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…