mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
15 lines
383 B
Python
15 lines
383 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!'
|