(self)
| 176 | |
| 177 | class TestFliplr: |
| 178 | def test_basic(self): |
| 179 | assert_raises(ValueError, fliplr, ones(4)) |
| 180 | a = get_mat(4) |
| 181 | b = a[:, ::-1] |
| 182 | assert_equal(fliplr(a), b) |
| 183 | a = [[0, 1, 2], |
| 184 | [3, 4, 5]] |
| 185 | b = [[2, 1, 0], |
| 186 | [5, 4, 3]] |
| 187 | assert_equal(fliplr(a), b) |
| 188 | |
| 189 | |
| 190 | class TestFlipud: |
nothing calls this directly
no test coverage detected