(self)
| 1613 | self.plotmethod(add_colorbar=False, cbar_kwargs={"label": "label"}) |
| 1614 | |
| 1615 | def test_verbose_facetgrid(self) -> None: |
| 1616 | a = easy_array((10, 15, 3)) |
| 1617 | d = DataArray(a, dims=["y", "x", "z"]) |
| 1618 | g = xplt.FacetGrid(d, col="z", subplot_kws=self.subplot_kws) |
| 1619 | g.map_dataarray(self.plotfunc, "x", "y") |
| 1620 | for ax in g.axs.flat: |
| 1621 | assert ax.has_data() |
| 1622 | |
| 1623 | def test_2d_function_and_method_signature_same(self) -> None: |
| 1624 | func_sig = inspect.signature(self.plotfunc) |
nothing calls this directly
no test coverage detected