(self, data_array, yincrease)
| 3176 | |
| 3177 | @pytest.mark.parametrize("yincrease", [True, False]) |
| 3178 | def test_yincrease_kwarg(self, data_array, yincrease) -> None: |
| 3179 | with figure_context(): |
| 3180 | data_array.plot(yincrease=yincrease) |
| 3181 | assert plt.gca().yaxis_inverted() == (not yincrease) |
| 3182 | |
| 3183 | @pytest.mark.parametrize("xscale", ["linear", "logit", "symlog"]) |
| 3184 | def test_xscale_kwarg(self, data_array, xscale) -> None: |
nothing calls this directly
no test coverage detected