(self)
| 4423 | assert_(output[()] is masked) |
| 4424 | |
| 4425 | def test_identity(self): |
| 4426 | a = identity(5) |
| 4427 | assert_(isinstance(a, MaskedArray)) |
| 4428 | assert_equal(a, np.identity(5)) |
| 4429 | |
| 4430 | def test_power(self): |
| 4431 | x = -1.1 |
nothing calls this directly
no test coverage detected