(self)
| 269 | assert_array_equal(z.mask, [False, True, False, False]) |
| 270 | |
| 271 | def test_concatenate_flexible(self): |
| 272 | # Tests the concatenation on flexible arrays. |
| 273 | data = masked_array(list(zip(np.random.rand(10), |
| 274 | np.arange(10))), |
| 275 | dtype=[('a', float), ('b', int)]) |
| 276 | |
| 277 | test = concatenate([data[:5], data[5:]]) |
| 278 | assert_equal_records(test, data) |
| 279 | |
| 280 | def test_creation_ndmin(self): |
| 281 | # Check the use of ndmin |
nothing calls this directly
no test coverage detected