()
| 8397 | |
| 8398 | |
| 8399 | def test_inset_subclass(): |
| 8400 | _, ax = plt.subplots() |
| 8401 | axins = ax.inset_axes([0.2, 0.2, 0.3, 0.3], axes_class=AA.Axes) |
| 8402 | assert isinstance(axins, AA.Axes) |
| 8403 | |
| 8404 | |
| 8405 | @pytest.mark.parametrize('x_inverted', [False, True]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…