hurl/integration/tests/follow_redirect.py
2022-02-05 18:15:41 +01:00

18 lines
386 B
Python

from tests import app
from flask import redirect
@app.route("/follow-redirect")
def follow_redirect():
return redirect("http://localhost:8000/following-redirect")
@app.route("/following-redirect")
def following_redirect():
return redirect("http://localhost:8000/followed-redirect")
@app.route("/followed-redirect")
def followed_redirect():
return "Followed redirect!"