(self)
| 2066 | assert 0 == len(find_possible_colorbars()) |
| 2067 | |
| 2068 | def test_plot_rgb_faceted(self) -> None: |
| 2069 | DataArray( |
| 2070 | easy_array((2, 2, 10, 15, 3), start=0), dims=["a", "b", "y", "x", "band"] |
| 2071 | ).plot.imshow(row="a", col="b") |
| 2072 | assert 0 == len(find_possible_colorbars()) |
| 2073 | |
| 2074 | def test_plot_rgba_image_transposed(self) -> None: |
| 2075 | # We can handle the color axis being in any position |
nothing calls this directly
no test coverage detected