()
| 3353 | |
| 3354 | @requires_matplotlib |
| 3355 | def test_get_axis_current() -> None: |
| 3356 | with figure_context(): |
| 3357 | _, ax = plt.subplots() |
| 3358 | out_ax = get_axis() |
| 3359 | assert ax is out_ax |
| 3360 | |
| 3361 | |
| 3362 | @requires_matplotlib |
nothing calls this directly
no test coverage detected
searching dependent graphs…