(f)
| 60 | """Check that get_real_func correctly unwraps decorators until reaching the real function""" |
| 61 | |
| 62 | def decorator(f): |
| 63 | @wraps(f) |
| 64 | def inner(): |
| 65 | pass # pragma: no cover |
| 66 | |
| 67 | return inner |
| 68 | |
| 69 | def func(): |
| 70 | pass # pragma: no cover |
no outgoing calls
no test coverage detected