(self)
| 471 | assert_equal(test, z) |
| 472 | |
| 473 | def test_solo_w_flatten(self): |
| 474 | # Test merge_arrays on a single array w & w/o flattening |
| 475 | w = self._create_arrays()[0] |
| 476 | test = merge_arrays(w, flatten=False) |
| 477 | assert_equal(test, w) |
| 478 | |
| 479 | test = merge_arrays(w, flatten=True) |
| 480 | control = np.array([(1, 2, 3.0), (4, 5, 6.0)], |
| 481 | dtype=[('a', int), ('ba', float), ('bb', int)]) |
| 482 | assert_equal(test, control) |
| 483 | |
| 484 | def test_standard(self): |
| 485 | # Test standard & standard |
nothing calls this directly
no test coverage detected