(self)
| 253 | |
| 254 | @pytest.mark.xfail(reason="bfill uses bottleneck or numbagg") |
| 255 | def test_bfill(self): |
| 256 | result = self.x.bfill() |
| 257 | assert isinstance(result.data, self.Array) |
| 258 | |
| 259 | @pytest.mark.xfail(reason="interpolate_na uses numpy and scipy") |
| 260 | def test_interpolate_na(self): |