(self)
| 570 | assert_equal(xc.mask, True) |
| 571 | |
| 572 | def test_copy_on_python_builtins(self): |
| 573 | # Tests copy works on python builtins (issue#8019) |
| 574 | assert_(isMaskedArray(np.ma.copy([1, 2, 3]))) |
| 575 | assert_(isMaskedArray(np.ma.copy((1, 2, 3)))) |
| 576 | |
| 577 | def test_copy_immutable(self): |
| 578 | # Tests that the copy method is immutable, GitHub issue #5247 |
nothing calls this directly
no test coverage detected