()
| 249 | def assert_any_call(*args, **kwargs): |
| 250 | return mock.assert_any_call(*args, **kwargs) |
| 251 | def reset_mock(): |
| 252 | funcopy.method_calls = _CallList() |
| 253 | funcopy.mock_calls = _CallList() |
| 254 | mock.reset_mock() |
| 255 | ret = funcopy.return_value |
| 256 | if _is_instance_mock(ret) and not ret is mock: |
| 257 | ret.reset_mock() |
| 258 | |
| 259 | funcopy.called = False |
| 260 | funcopy.call_count = 0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…