(self)
| 154 | self.assertLazyAndIdentical(u.T, v.T) |
| 155 | |
| 156 | def test_shift(self): |
| 157 | u = self.eager_var |
| 158 | v = self.lazy_var |
| 159 | self.assertLazyAndIdentical(u.shift(x=2), v.shift(x=2)) |
| 160 | self.assertLazyAndIdentical(u.shift(x=-2), v.shift(x=-2)) |
| 161 | assert v.data.chunks == v.shift(x=1).data.chunks |
| 162 | |
| 163 | def test_roll(self): |
| 164 | u = self.eager_var |
nothing calls this directly
no test coverage detected