(self)
| 106 | |
| 107 | class TestApplyAlongAxis: |
| 108 | def test_simple(self): |
| 109 | a = np.ones((20, 10), 'd') |
| 110 | assert_array_equal( |
| 111 | apply_along_axis(len, 0, a), len(a)*np.ones(a.shape[1])) |
| 112 | |
| 113 | def test_simple101(self): |
| 114 | a = np.ones((10, 101), 'd') |
nothing calls this directly
no test coverage detected