hurl/integration/tests/assert_match.py
2022-02-05 18:15:41 +01:00

16 lines
275 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",
"path1": "aa/bb",
"path2": "aa\\\\bb"
}""",
mimetype="application/json",
)