(self)
| 282 | assert self.var.nbytes == self.data.nbytes |
| 283 | |
| 284 | def test_unary_op(self): |
| 285 | assert_sparse_equal(-self.var.data, -self.data) |
| 286 | assert_sparse_equal(abs(self.var).data, abs(self.data)) |
| 287 | assert_sparse_equal(self.var.round().data, self.data.round()) |
| 288 | |
| 289 | @pytest.mark.filterwarnings("ignore::FutureWarning") |
| 290 | def test_univariate_ufunc(self): |
nothing calls this directly
no test coverage detected