(f)
| 137 | |
| 138 | |
| 139 | def noop_if_monkey_patched(f): |
| 140 | if is_monkey_patched(): |
| 141 | @wraps(f) |
| 142 | def noop(*args, **kwargs): |
| 143 | return |
| 144 | return noop |
| 145 | |
| 146 | return f |
| 147 | |
| 148 | |
| 149 | class TimerTestMixin(object): |
nothing calls this directly
no test coverage detected