(self)
| 463 | assert_equal(test, z) |
| 464 | |
| 465 | def test_solo_w_flatten(self): |
| 466 | # Test merge_arrays on a single array w & w/o flattening |
| 467 | w = self.data[0] |
| 468 | test = merge_arrays(w, flatten=False) |
| 469 | assert_equal(test, w) |
| 470 | |
| 471 | test = merge_arrays(w, flatten=True) |
| 472 | control = np.array([(1, 2, 3.0), (4, 5, 6.0)], |
| 473 | dtype=[('a', int), ('ba', float), ('bb', int)]) |
| 474 | assert_equal(test, control) |
| 475 | |
| 476 | def test_standard(self): |
| 477 | # Test standard & standard |
nothing calls this directly
no test coverage detected