(self)
| 414 | assert_equal(self.m.ravel().shape, (1, 2)) |
| 415 | |
| 416 | def test_member_flatten(self): |
| 417 | assert_equal(self.a.flatten().shape, (2,)) |
| 418 | assert_equal(self.m.flatten().shape, (1, 2)) |
| 419 | |
| 420 | def test_numpy_ravel_order(self): |
| 421 | x = np.array([[1, 2, 3], [4, 5, 6]]) |
nothing calls this directly
no test coverage detected