hurl/integration/tests_ok/path_as_is.py

9 lines
186 B
Python
Raw Normal View History

2023-06-21 15:06:39 +03:00
from flask import request, make_response
from app import app
@app.route("/path-as-is/../resource")
def path_as_is():
assert request.path == "/path-as-is/../resource"
return ""