(self)
| 2342 | |
| 2343 | @pytest.mark.slow |
| 2344 | def test_groups(self) -> None: |
| 2345 | self.g.map_dataarray(xplt.imshow, "x", "y") |
| 2346 | upperleft_dict = self.g.name_dicts[0, 0] |
| 2347 | upperleft_array = self.darray.loc[upperleft_dict] |
| 2348 | z0 = self.darray.isel(z=0) |
| 2349 | |
| 2350 | assert_equal(upperleft_array, z0) |
| 2351 | |
| 2352 | @pytest.mark.slow |
| 2353 | def test_float_index(self) -> None: |
nothing calls this directly
no test coverage detected