(self, data_array, yscale)
| 3188 | |
| 3189 | @pytest.mark.parametrize("yscale", ["linear", "logit", "symlog"]) |
| 3190 | def test_yscale_kwarg(self, data_array, yscale) -> None: |
| 3191 | with figure_context(): |
| 3192 | data_array.plot(yscale=yscale) |
| 3193 | assert plt.gca().get_yscale() == yscale |
| 3194 | |
| 3195 | def test_xscale_log_kwarg(self, data_array_logspaced) -> None: |
| 3196 | xscale = "log" |
nothing calls this directly
no test coverage detected