(self)
| 626 | self.assertLazyAndAllClose(expected, actual) |
| 627 | |
| 628 | def test_to_dataset_roundtrip(self): |
| 629 | u = self.eager_array |
| 630 | v = self.lazy_array |
| 631 | |
| 632 | expected = u.assign_coords(x=u["x"]) |
| 633 | self.assertLazyAndEqual(expected, v.to_dataset("x").to_dataarray("x")) |
| 634 | |
| 635 | def test_merge(self): |
| 636 | def duplicate_and_merge(array): |
nothing calls this directly
no test coverage detected