(self)
| 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 |
| 2076 | DataArray( |
| 2077 | easy_array((4, 10, 15), start=0), dims=["band", "y", "x"] |
| 2078 | ).plot.imshow() |
| 2079 | |
| 2080 | def test_warns_ambiguous_dim(self) -> None: |
| 2081 | arr = DataArray(easy_array((3, 3, 3)), dims=["y", "x", "band"]) |
nothing calls this directly
no test coverage detected