mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-28 04:13:33 +03:00
12 lines
238 B
Python
12 lines
238 B
Python
|
from tests import app
|
||
|
from flask import request
|
||
|
|
||
|
@app.route("/expect", methods=['POST'])
|
||
|
def expect():
|
||
|
assert request.headers['Expect'] == '100-continue'
|
||
|
s = request.data.decode("utf-8")
|
||
|
assert s == '''data'''
|
||
|
return ''
|
||
|
|
||
|
|