(self)
| 689 | self.assertLazyAndEqual(expected, stacked) |
| 690 | |
| 691 | def test_dot(self): |
| 692 | eager = self.eager_array.dot(self.eager_array[0]) |
| 693 | lazy = self.lazy_array.dot(self.lazy_array[0]) |
| 694 | self.assertLazyAndAllClose(eager, lazy) |
| 695 | |
| 696 | def test_dataarray_repr(self): |
| 697 | data = build_dask_array("data") |
nothing calls this directly
no test coverage detected