hurl/integration/tests/redirect.py

11 lines
207 B
Python
Raw Normal View History

2020-08-27 10:07:46 +03:00
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 ''