hurl/integration/tests/include.py
Fabrice Reix f99b66502f Add test for include option
amend commit
2020-11-09 22:32:40 +01:00

8 lines
165 B
Python

from tests import app
from flask import Response
@app.route("/include")
def include():
headers = {'Date': 'DATE'}
return Response('Hello', headers=headers)