(self)
| 8323 | |
| 8324 | @requires_dask |
| 8325 | def test_from_dask(self) -> None: |
| 8326 | ds = xr.Dataset({"a": ("x", [1, 2, 3])}, coords={"lat": ("x", [4, 5, 6])}) |
| 8327 | ds_chunked = ds.chunk(1) |
| 8328 | |
| 8329 | assert_identical(ds_chunked.as_numpy(), ds.compute()) |
| 8330 | |
| 8331 | @requires_pint |
| 8332 | def test_from_pint(self) -> None: |
nothing calls this directly
no test coverage detected