mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-12 05:42:23 +03:00
9 lines
169 B
Python
9 lines
169 B
Python
from flask import request
|
|
from tests import app
|
|
|
|
@app.route('/post-bytes', methods=['POST'])
|
|
def post_bytes():
|
|
assert request.data == b'\x01\x02\x03'
|
|
return ''
|
|
|