diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 17:03:41 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-04-02 17:03:41 +0300 |
commit | a01a98ce36dd47c1be1df37470cac1656efac31e (patch) | |
tree | a2b962d568e14562b9274d142b239eedc6eae1df /test/python/body_array | |
parent | efb71121b98c4dfded212e8b6fe33873cfd83376 (diff) | |
download | unit-a01a98ce36dd47c1be1df37470cac1656efac31e.tar.gz unit-a01a98ce36dd47c1be1df37470cac1656efac31e.tar.bz2 |
Tests: more Python tests.
Diffstat (limited to 'test/python/body_array')
-rw-r--r-- | test/python/body_array/wsgi.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/python/body_array/wsgi.py b/test/python/body_array/wsgi.py new file mode 100644 index 00000000..2390f222 --- /dev/null +++ b/test/python/body_array/wsgi.py @@ -0,0 +1,3 @@ +def application(env, start_response): + start_response('200', [('Content-Length', '10')]) + return [b'0123', b'4567', b'89'] |