(self)
| 639 | return w, x, y, z |
| 640 | |
| 641 | def test_solo(self): |
| 642 | # Test stack_arrays on single arrays |
| 643 | x = self._create_arrays()[1] |
| 644 | test = stack_arrays((x,)) |
| 645 | assert_equal(test, x) |
| 646 | assert_(test is x) |
| 647 | |
| 648 | test = stack_arrays(x) |
| 649 | assert_equal(test, x) |
| 650 | assert_(test is x) |
| 651 | |
| 652 | def test_unnamed_fields(self): |
| 653 | # Tests combinations of arrays w/o named fields |
nothing calls this directly
no test coverage detected