(self)
| 135 | |
| 136 | class TestApplyAlongAxis: |
| 137 | def test_simple(self): |
| 138 | a = np.ones((20, 10), 'd') |
| 139 | assert_array_equal( |
| 140 | apply_along_axis(len, 0, a), len(a) * np.ones(a.shape[1])) |
| 141 | |
| 142 | def test_simple101(self): |
| 143 | a = np.ones((10, 101), 'd') |
nothing calls this directly
no test coverage detected