mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
23 lines
596 B
Python
23 lines
596 B
Python
from tests import app
|
|
from flask import make_response, request
|
|
|
|
|
|
@app.route('/captures')
|
|
def captures():
|
|
resp = make_response()
|
|
resp.headers['Header1'] = 'value1'
|
|
resp.headers['Header2'] = 'Hello Bob!'
|
|
return resp
|
|
|
|
|
|
@app.route('/captures-check')
|
|
def captures_check():
|
|
assert request.args.get('param1') == 'value1'
|
|
assert request.args.get('param2') == 'Bob'
|
|
return ''
|
|
|
|
|
|
|
|
@app.route('/captures-json')
|
|
def captures_json():
|
|
return '{ "a_null": null, "an_object": {"id": "123"}, "a_list": [1,2,3], "an_integer": 1, "a_float": 1.1, "a_bool": true, "a_string": "hello" }' |