mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
10 lines
107 B
Python
10 lines
107 B
Python
from tests import app
|
|
import time
|
|
|
|
@app.route('/timeout')
|
|
def timeout():
|
|
time.sleep(2)
|
|
return ''
|
|
|
|
|