(self)
| 8317 | |
| 8318 | class TestNumpyCoercion: |
| 8319 | def test_from_numpy(self) -> None: |
| 8320 | ds = xr.Dataset({"a": ("x", [1, 2, 3])}, coords={"lat": ("x", [4, 5, 6])}) |
| 8321 | |
| 8322 | assert_identical(ds.as_numpy(), ds) |
| 8323 | |
| 8324 | @requires_dask |
| 8325 | def test_from_dask(self) -> None: |
nothing calls this directly
no test coverage detected