(self)
| 2268 | |
| 2269 | @pytest.mark.slow |
| 2270 | def test_no_args(self) -> None: |
| 2271 | self.g.map_dataarray(xplt.contourf, "x", "y") |
| 2272 | |
| 2273 | # Don't want colorbar labeled with 'None' |
| 2274 | alltxt = text_in_fig() |
| 2275 | assert "None" not in alltxt |
| 2276 | |
| 2277 | for ax in self.g.axs.flat: |
| 2278 | assert ax.has_data() |
| 2279 | |
| 2280 | @pytest.mark.slow |
| 2281 | def test_names_appear_somewhere(self) -> None: |
nothing calls this directly
no test coverage detected