(self)
| 844 | |
| 845 | @pytest.mark.xfail |
| 846 | def test_merge(self): |
| 847 | x = self.sp_xr |
| 848 | y = xr.merge([x, x.rename("bar")]).to_dataarray() |
| 849 | assert isinstance(y, sparse.SparseArray) |
| 850 | |
| 851 | @pytest.mark.xfail |
| 852 | def test_where(self): |
nothing calls this directly
no test coverage detected