(self)
| 563 | x.join.assert_called() |
| 564 | |
| 565 | def test_add(self): |
| 566 | x = self.app.ResultSet([self.app.AsyncResult(1)]) |
| 567 | x.add(self.app.AsyncResult(2)) |
| 568 | assert len(x) == 2 |
| 569 | x.add(self.app.AsyncResult(2)) |
| 570 | assert len(x) == 2 |
| 571 | |
| 572 | @contextmanager |
| 573 | def dummy_copy(self): |
nothing calls this directly
no test coverage detected