hurl/integration/tests/error_timeout.py

10 lines
107 B
Python
Raw Normal View History

from tests import app
import time
@app.route('/timeout')
def timeout():
time.sleep(2)
return ''