(self)
| 387 | ds["v"].plot.line(y="z", hue="x") |
| 388 | |
| 389 | def test_2d_before_squeeze(self) -> None: |
| 390 | a = DataArray(easy_array((1, 5))) |
| 391 | a.plot() # type: ignore[call-arg] |
| 392 | |
| 393 | def test2d_uniform_calls_imshow(self) -> None: |
| 394 | assert self.imshow_called(self.darray[:, :, 0].plot.imshow) |
nothing calls this directly
no test coverage detected