Tests: reworked python tests with application.
This commit is contained in:
12
test/python/atexit/wsgi.py
Normal file
12
test/python/atexit/wsgi.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import atexit
|
||||
|
||||
def application(environ, start_response):
|
||||
test_dir = environ.get('HTTP_TEST_DIR')
|
||||
|
||||
def create_file():
|
||||
open(test_dir + '/atexit', 'w')
|
||||
|
||||
atexit.register(create_file)
|
||||
|
||||
start_response('200', [('Content-Length', '0')])
|
||||
return []
|
||||
Reference in New Issue
Block a user