()
| 9065 | |
| 9066 | |
| 9067 | def test_invisible_axes_events(): |
| 9068 | # invisible axes should not respond to events... |
| 9069 | fig, ax = plt.subplots() |
| 9070 | assert fig.canvas.inaxes((200, 200)) is not None |
| 9071 | ax.set_visible(False) |
| 9072 | assert fig.canvas.inaxes((200, 200)) is None |
| 9073 | |
| 9074 | |
| 9075 | def test_xtickcolor_is_not_markercolor(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…