()
| 48 | |
| 49 | |
| 50 | def test_partition_matrix_none(): |
| 51 | # gh-4301 |
| 52 | # 2018-04-29: moved here from core.tests.test_multiarray |
| 53 | a = np.matrix([[2, 1, 0]]) |
| 54 | actual = np.partition(a, 1, axis=None) |
| 55 | expected = np.matrix([[0, 1, 2]]) |
| 56 | assert_equal(actual, expected) |
| 57 | assert_(type(expected) is np.matrix) |
| 58 | |
| 59 | |
| 60 | def test_dot_scalar_and_matrix_of_objects(): |
nothing calls this directly
no test coverage detected