(self)
| 113 | assert self.tb.mget(['foo', 'bar']) == {'foo': 1, 'bar': 2} |
| 114 | |
| 115 | def test_forget(self): |
| 116 | self.tb.mark_as_done(self.tid, {'foo': 'bar'}) |
| 117 | x = self.app.AsyncResult(self.tid, backend=self.tb) |
| 118 | x.forget() |
| 119 | assert x.result is None |
| 120 | |
| 121 | def test_process_cleanup(self): |
| 122 | self.tb.process_cleanup() |
nothing calls this directly
no test coverage detected