hurl/integration/tests_ok/hello.py

11 lines
242 B
Python
Raw Normal View History

from app import app
2020-09-15 14:48:58 +03:00
from flask import request
2020-08-27 10:07:46 +03:00
2020-08-27 10:07:46 +03:00
@app.route("/hello")
def hello():
assert "Content-Type" not in request.headers
assert "Content-Length" not in request.headers
2020-09-15 14:48:58 +03:00
assert len(request.data) == 0
return "Hello World!"