(self)
| 576 | assert_raises(ValueError, vsplit, a, 2) |
| 577 | |
| 578 | def test_1D_array(self): |
| 579 | a = np.array([1, 2, 3, 4]) |
| 580 | try: |
| 581 | vsplit(a, 2) |
| 582 | assert_(0) |
| 583 | except ValueError: |
| 584 | pass |
| 585 | |
| 586 | def test_2D_array(self): |
| 587 | a = np.array([[1, 2, 3, 4], |