(self)
| 368 | MaskedArray([1, 2, 3], maks=[0, 1, 0]) # `mask` is misspelled. |
| 369 | |
| 370 | def test_asarray(self): |
| 371 | xm = self._create_data()[5] |
| 372 | xm.fill_value = -9999 |
| 373 | xm._hardmask = True |
| 374 | xmm = asarray(xm) |
| 375 | assert_equal(xmm._data, xm._data) |
| 376 | assert_equal(xmm._mask, xm._mask) |
| 377 | assert_equal(xmm.fill_value, xm.fill_value) |
| 378 | assert_equal(xmm._hardmask, xm._hardmask) |
| 379 | |
| 380 | def test_asarray_default_order(self): |
| 381 | # See Issue #6646 |
nothing calls this directly
no test coverage detected