(self)
| 386 | self.assertLazyAndIdentical(self.lazy_array, chunked) |
| 387 | |
| 388 | def test_new_chunk(self): |
| 389 | chunked = self.eager_array.chunk() |
| 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)}) |
nothing calls this directly
no test coverage detected