(self)
| 4203 | assert_equal(a.anom(), [-1, 0, 1]) |
| 4204 | |
| 4205 | def test_anom_shape(self): |
| 4206 | a = masked_array([1, 2, 3]) |
| 4207 | assert_equal(a.anom().shape, a.shape) |
| 4208 | a.mask = True |
| 4209 | assert_equal(a.anom().shape, a.shape) |
| 4210 | assert_(np.ma.is_masked(a.anom())) |
| 4211 | |
| 4212 | def test_anom(self): |
| 4213 | a = masked_array(np.arange(1, 7).reshape(2, 3)) |
nothing calls this directly
no test coverage detected