mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 00:22:10 +03:00
9 lines
186 B
Python
9 lines
186 B
Python
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 ""
|