hurl/integration/tests/user.py

11 lines
166 B
Python
Raw Normal View History

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