hurl/integration/tests/redirect.py
2020-08-27 16:44:57 +02:00

11 lines
207 B
Python

from tests import app
from flask import redirect
@app.route('/redirect')
def redirectme():
return redirect('http://localhost:8000/redirected')
@app.route('/redirected')
def redirected():
return ''