(self)
| 451 | self.b._cache['exists'] = {'result': 'group'} |
| 452 | |
| 453 | def test_reload_task_result(self): |
| 454 | self.b._cache = {} |
| 455 | self.b.reload_task_result('task-exists') |
| 456 | self.b._cache['task-exists'] = {'result': 'task'} |
| 457 | |
| 458 | def test_fail_from_current_stack(self): |
| 459 | import inspect |
nothing calls this directly
no test coverage detected