()
| 83 | |
| 84 | |
| 85 | def test_inset_indicator_zorder(): |
| 86 | fig, ax = plt.subplots() |
| 87 | rect = [0.2, 0.2, 0.3, 0.4] |
| 88 | |
| 89 | inset = ax.indicate_inset(rect) |
| 90 | assert inset.get_zorder() == 4.99 |
| 91 | |
| 92 | inset = ax.indicate_inset(rect, zorder=42) |
| 93 | assert inset.get_zorder() == 42 |
| 94 | |
| 95 | |
| 96 | @image_comparison(['zoom_inset_connector_styles.png'], remove_text=True, style='mpl20', |
nothing calls this directly
no test coverage detected
searching dependent graphs…