hurl/integration/tests_ok/redirect.py

13 lines
207 B
Python
Raw Normal View History

from app import app
2020-08-27 10:07:46 +03:00
from flask import redirect
@app.route("/redirect")
2020-08-27 10:07:46 +03:00
def redirectme():
return redirect("http://localhost:8000/redirected")
2020-08-27 10:07:46 +03:00
@app.route("/redirected")
2020-08-27 10:07:46 +03:00
def redirected():
return ""