(self)
| 576 | assert ds3["c"].data is c3 |
| 577 | |
| 578 | def test_groupby(self): |
| 579 | u = self.eager_array |
| 580 | v = self.lazy_array |
| 581 | |
| 582 | expected = u.groupby("x").mean(...) |
| 583 | with raise_if_dask_computes(): |
| 584 | actual = v.groupby("x").mean(...) |
| 585 | self.assertLazyAndAllClose(expected, actual) |
| 586 | |
| 587 | def test_rolling(self): |
| 588 | u = self.eager_array |
nothing calls this directly
no test coverage detected