hurl/integration/tests/hello.py
2020-09-17 16:19:32 +02:00

11 lines
244 B
Python

from tests import app
from flask import request
@app.route("/hello")
def hello():
assert 'Content-Type' not in request.headers
assert 'Content-Length' not in request.headers
assert len(request.data) == 0
return 'Hello World!'