(*args, **kwargs)
| 80 | def test_view_decorators(app, client): |
| 81 | def add_x_parachute(f): |
| 82 | def new_function(*args, **kwargs): |
| 83 | resp = flask.make_response(f(*args, **kwargs)) |
| 84 | resp.headers["X-Parachute"] = "awesome" |
| 85 | return resp |
| 86 | |
| 87 | return new_function |
| 88 |
nothing calls this directly
no test coverage detected