(self)
| 4650 | assert_(output[()] is masked) |
| 4651 | |
| 4652 | def test_identity(self): |
| 4653 | a = identity(5) |
| 4654 | assert_(isinstance(a, MaskedArray)) |
| 4655 | assert_equal(a, np.identity(5)) |
| 4656 | |
| 4657 | def test_power(self): |
| 4658 | x = -1.1 |
nothing calls this directly
no test coverage detected