mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 08:42:06 +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 ""
|