()
| 8391 | |
| 8392 | |
| 8393 | def test_inset_projection(): |
| 8394 | _, ax = plt.subplots() |
| 8395 | axins = ax.inset_axes([0.2, 0.2, 0.3, 0.3], projection="hammer") |
| 8396 | assert isinstance(axins, HammerAxes) |
| 8397 | |
| 8398 | |
| 8399 | def test_inset_subclass(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…