(self)
| 4498 | class TestMaskedArrayFunctions: |
| 4499 | # Test class for miscellaneous functions. |
| 4500 | def test_masked_where_bool(self): |
| 4501 | x = [1, 2] |
| 4502 | y = masked_where(False, x) |
| 4503 | assert_equal(y, [1, 2]) |
| 4504 | assert_equal(y[1], 2) |
| 4505 | |
| 4506 | def test_masked_equal_wlist(self): |
| 4507 | x = [1, 2, 3] |
nothing calls this directly
no test coverage detected