(self)
| 158 | |
| 159 | class TestFliplr: |
| 160 | def test_basic(self): |
| 161 | assert_raises(ValueError, fliplr, ones(4)) |
| 162 | a = get_mat(4) |
| 163 | b = a[:, ::-1] |
| 164 | assert_equal(fliplr(a), b) |
| 165 | a = [[0, 1, 2], |
| 166 | [3, 4, 5]] |
| 167 | b = [[2, 1, 0], |
| 168 | [5, 4, 3]] |
| 169 | assert_equal(fliplr(a), b) |
| 170 | |
| 171 | |
| 172 | class TestFlipud: |
nothing calls this directly
no test coverage detected