(self)
| 390 | assert chunked.data.name.startswith("xarray-<this-array>") |
| 391 | |
| 392 | def test_lazy_dataset(self): |
| 393 | lazy_ds = Dataset({"foo": (("x", "y"), self.data)}) |
| 394 | assert isinstance(lazy_ds.foo.variable.data, da.Array) |
| 395 | |
| 396 | def test_lazy_array(self): |
| 397 | u = self.eager_array |