()
| 45 | |
| 46 | |
| 47 | def test_sort_matrix_none(): |
| 48 | # 2018-04-29: moved here from core.tests.test_multiarray |
| 49 | a = np.matrix([[2, 1, 0]]) |
| 50 | actual = np.sort(a, axis=None) |
| 51 | expected = np.matrix([[0, 1, 2]]) |
| 52 | assert_equal(actual, expected) |
| 53 | assert_(type(expected) is np.matrix) |
| 54 | |
| 55 | |
| 56 | def test_partition_matrix_none(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…