mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
12 lines
210 B
Python
12 lines
210 B
Python
|
from tests import app
|
||
|
from flask import Response
|
||
|
|
||
|
@app.route("/assert-match")
|
||
|
def assert_match():
|
||
|
return Response('''{
|
||
|
"date1": "2014-01-01",
|
||
|
"date2": "x2014-01-01"
|
||
|
}''', mimetype='application/json')
|
||
|
|
||
|
|