()
| 39 | |
| 40 | |
| 41 | def test_sort_matrix_none(): |
| 42 | # 2018-04-29: moved here from core.tests.test_multiarray |
| 43 | a = np.matrix([[2, 1, 0]]) |
| 44 | actual = np.sort(a, axis=None) |
| 45 | expected = np.matrix([[0, 1, 2]]) |
| 46 | assert_equal(actual, expected) |
| 47 | assert_(type(expected) is np.matrix) |
| 48 | |
| 49 | |
| 50 | def test_partition_matrix_none(): |
nothing calls this directly
no test coverage detected