(self)
| 558 | dtype=[('A', '|S3'), ('B', float), ('C', int)]) |
| 559 | |
| 560 | def test_singlerecord(self): |
| 561 | (_, x, y, z) = self.data |
| 562 | test = merge_arrays((x[0], y[0], z[0]), usemask=False) |
| 563 | control = np.array([(1, 10, ('A', 1))], |
| 564 | dtype=[('f0', int), |
| 565 | ('f1', int), |
| 566 | ('f2', [('A', '|S3'), ('B', float)])]) |
| 567 | assert_equal(test, control) |
| 568 | |
| 569 | |
| 570 | class TestAppendFields: |
nothing calls this directly
no test coverage detected