(self)
| 189 | assert isinstance(result.data, self.Array) |
| 190 | |
| 191 | def test_dot(self): |
| 192 | result = xr.dot(self.x1, self.x2) |
| 193 | assert isinstance(result.data, self.Array) |
| 194 | |
| 195 | def test_map_blocks(self): |
| 196 | result = xr.map_blocks(lambda x: x + 1, self.x1) |