(self)
| 1054 | self.assertEqual(len(batches[1]), 2) |
| 1055 | |
| 1056 | def test_empty(self): |
| 1057 | batches = group_work_items([], batch_size=5) |
| 1058 | self.assertEqual(batches, []) |
| 1059 | |
| 1060 | def test_batch_size_larger_than_total(self): |
| 1061 | """All items fit in one batch.""" |
nothing calls this directly
no test coverage detected