(self)
| 495 | assert isinstance(self.b.prepare_value(g), self.app.GroupResult) |
| 496 | |
| 497 | def test_is_cached(self): |
| 498 | b = BaseBackend(app=self.app, max_cached_results=1) |
| 499 | b._cache['foo'] = 1 |
| 500 | assert b.is_cached('foo') |
| 501 | assert not b.is_cached('false') |
| 502 | |
| 503 | def test_mark_as_done__chord(self): |
| 504 | b = BaseBackend(app=self.app) |
nothing calls this directly
no test coverage detected