hurl/integration/tests/hello.py

11 lines
244 B
Python
Raw Normal View History

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