(self)
| 107 | deps.delete.assert_called_with() |
| 108 | |
| 109 | def test_mget(self): |
| 110 | self.tb._set_with_state('foo', 1, states.SUCCESS) |
| 111 | self.tb._set_with_state('bar', 2, states.SUCCESS) |
| 112 | |
| 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'}) |
nothing calls this directly
no test coverage detected