(self, data_array, xscale)
| 3182 | |
| 3183 | @pytest.mark.parametrize("xscale", ["linear", "logit", "symlog"]) |
| 3184 | def test_xscale_kwarg(self, data_array, xscale) -> None: |
| 3185 | with figure_context(): |
| 3186 | data_array.plot(xscale=xscale) |
| 3187 | assert plt.gca().get_xscale() == xscale |
| 3188 | |
| 3189 | @pytest.mark.parametrize("yscale", ["linear", "logit", "symlog"]) |
| 3190 | def test_yscale_kwarg(self, data_array, yscale) -> None: |
nothing calls this directly
no test coverage detected