(attr, /, *args, **kwargs)
| 290 | # to a function and then the corresponding mock helper function |
| 291 | # is called when the helper is accessed similar to _setup_func. |
| 292 | def wrapper(attr, /, *args, **kwargs): |
| 293 | return getattr(mock.mock, attr)(*args, **kwargs) |
| 294 | |
| 295 | for attribute in ('assert_awaited', |
| 296 | 'assert_awaited_once', |
no outgoing calls
no test coverage detected
searching dependent graphs…