hurl/integration/tests_ok/user.py

13 lines
166 B
Python
Raw Normal View History

2021-10-14 10:05:03 +03:00
# coding=utf-8
from app import app
2021-10-14 10:05:03 +03:00
2021-10-14 10:05:03 +03:00
@app.route("/~user")
def url_with_tilde():
return "user"
2021-10-17 11:14:03 +03:00
@app.route("/!$&()*+,;=:@[]")
def url_weird():
return "weird"