(self)
| 1012 | ) |
| 1013 | |
| 1014 | def test_call_empty_group(self): |
| 1015 | x = group(app=self.app) |
| 1016 | assert not len(x()) |
| 1017 | x.delay() |
| 1018 | x.apply_async() |
| 1019 | x() |
| 1020 | |
| 1021 | def test_skew(self): |
| 1022 | g = group([self.add.s(i, i) for i in range(10)]) |
nothing calls this directly
no test coverage detected