(self)
| 174 | assert_array_equal(z.mask, [False, True, False, False]) |
| 175 | |
| 176 | def test_concatenate_flexible(self): |
| 177 | # Tests the concatenation on flexible arrays. |
| 178 | data = masked_array(list(zip(np.random.rand(10), |
| 179 | np.arange(10))), |
| 180 | dtype=[('a', float), ('b', int)]) |
| 181 | |
| 182 | test = concatenate([data[:5], data[5:]]) |
| 183 | assert_equal_records(test, data) |
| 184 | |
| 185 | def test_creation_ndmin(self): |
| 186 | # Check the use of ndmin |
nothing calls this directly
no test coverage detected