(self)
| 457 | # equal split. Only test for this case. |
| 458 | |
| 459 | def test_equal_split(self): |
| 460 | a = np.arange(10) |
| 461 | res = split(a, 2) |
| 462 | desired = [np.arange(5), np.arange(5, 10)] |
| 463 | compare_results(res, desired) |
| 464 | |
| 465 | def test_unequal_split(self): |
| 466 | a = np.arange(10) |
nothing calls this directly
no test coverage detected