mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +03:00
15 lines
448 B
Python
15 lines
448 B
Python
from flask import request, make_response
|
|
from tests import app
|
|
|
|
|
|
@app.route('/patch/file.txt', methods=['PATCH'])
|
|
def patch():
|
|
assert request.headers['Host'] == 'www.example.com'
|
|
assert request.headers['Content-Type'] == 'application/example'
|
|
assert request.headers['If-Match'] == '"e0023aa4e"'
|
|
resp = make_response()
|
|
resp.headers['Content-Location'] = '/file.txt'
|
|
resp.headers['ETag'] = '"e0023aa4f"'
|
|
return resp, 204
|
|
|