()
| 751 | |
| 752 | |
| 753 | def test_sparse(): |
| 754 | pytest.importorskip("scipy") |
| 755 | assert_sparse_equal_ref(m.sparse_r()) |
| 756 | assert_sparse_equal_ref(m.sparse_c()) |
| 757 | assert_sparse_equal_ref(m.sparse_copy_r(m.sparse_r())) |
| 758 | assert_sparse_equal_ref(m.sparse_copy_c(m.sparse_c())) |
| 759 | assert_sparse_equal_ref(m.sparse_copy_r(m.sparse_c())) |
| 760 | assert_sparse_equal_ref(m.sparse_copy_c(m.sparse_r())) |
| 761 | |
| 762 | |
| 763 | def test_sparse_signature(doc): |
nothing calls this directly
no test coverage detected