mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
11 lines
244 B
Python
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!'
|
|
|