(self)
| 800 | |
| 801 | class TestJoinBy: |
| 802 | def _create_arrays(self): |
| 803 | a = np.array(list(zip(np.arange(10), np.arange(50, 60), |
| 804 | np.arange(100, 110))), |
| 805 | dtype=[('a', int), ('b', int), ('c', int)]) |
| 806 | b = np.array(list(zip(np.arange(5, 15), np.arange(65, 75), |
| 807 | np.arange(100, 110))), |
| 808 | dtype=[('a', int), ('b', int), ('d', int)]) |
| 809 | return a, b |
| 810 | |
| 811 | def test_inner_join(self): |
| 812 | # Basic test of join_by |
no outgoing calls
no test coverage detected