(f)
| 44 | """Check that get_real_func correctly unwraps decorators until reaching the real function""" |
| 45 | |
| 46 | def decorator(f): |
| 47 | @wraps(f) |
| 48 | def inner(): |
| 49 | pass # pragma: no cover |
| 50 | |
| 51 | return inner |
| 52 | |
| 53 | def func(): |
| 54 | pass # pragma: no cover |
no outgoing calls
no test coverage detected