(self)
| 784 | |
| 785 | @pytest.mark.xfail(reason="No implementation of np.einsum") |
| 786 | def test_dot(self): |
| 787 | a1 = self.sp_xr.dot(self.sp_xr[0]) |
| 788 | a2 = self.sp_ar.dot(self.sp_ar[0]) |
| 789 | assert_equal(a1, a2) |
| 790 | |
| 791 | @pytest.mark.xfail(reason="Groupby reductions produce dense output") |
| 792 | def test_groupby(self): |
nothing calls this directly
no test coverage detected