Tests: Python targets.
This commit is contained in:
8
test/python/targets/wsgi.py
Normal file
8
test/python/targets/wsgi.py
Normal file
@@ -0,0 +1,8 @@
|
||||
def wsgi_target_a(env, start_response):
|
||||
start_response('200', [('Content-Length', '1')])
|
||||
return [b'1']
|
||||
|
||||
|
||||
def wsgi_target_b(env, start_response):
|
||||
start_response('200', [('Content-Length', '1')])
|
||||
return [b'2']
|
||||
Reference in New Issue
Block a user