(self)
| 2060 | assert 0 == len(find_possible_colorbars()) |
| 2061 | |
| 2062 | def test_plot_rgb_image_explicit(self) -> None: |
| 2063 | DataArray( |
| 2064 | easy_array((10, 15, 3), start=0), dims=["y", "x", "band"] |
| 2065 | ).plot.imshow(y="y", x="x", rgb="band") |
| 2066 | assert 0 == len(find_possible_colorbars()) |
| 2067 | |
| 2068 | def test_plot_rgb_faceted(self) -> None: |
| 2069 | DataArray( |
nothing calls this directly
no test coverage detected