| 222 | |
| 223 | def test_default_static_max_age(app): |
| 224 | class MyBlueprint(flask.Blueprint): |
| 225 | def get_send_file_max_age(self, filename): |
| 226 | return 100 |
| 227 | |
| 228 | blueprint = MyBlueprint("blueprint", __name__, static_folder="static") |
| 229 | app.register_blueprint(blueprint) |
no outgoing calls