(self)
| 564 | dtype=[('A', '|S3'), ('B', float), ('C', int)]) |
| 565 | |
| 566 | def test_singlerecord(self): |
| 567 | _, x, y, z = self._create_arrays() |
| 568 | test = merge_arrays((x[0], y[0], z[0]), usemask=False) |
| 569 | control = np.array([(1, 10, ('A', 1))], |
| 570 | dtype=[('f0', int), |
| 571 | ('f1', int), |
| 572 | ('f2', [('A', '|S3'), ('B', float)])]) |
| 573 | assert_equal(test, control) |
| 574 | |
| 575 | |
| 576 | class TestAppendFields: |
nothing calls this directly
no test coverage detected