From 09f2009df564ab2063ee4713ba24247039945146 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 20 Feb 2018 20:34:41 +0300 Subject: Tests: reworked python tests with application. --- test/python/empty/wsgi.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/python/empty/wsgi.py (limited to 'test/python/empty/wsgi.py') diff --git a/test/python/empty/wsgi.py b/test/python/empty/wsgi.py new file mode 100644 index 00000000..ce03850a --- /dev/null +++ b/test/python/empty/wsgi.py @@ -0,0 +1,3 @@ +def application(env, start_response): + start_response('200', [('Content-Length', '0')]) + return [] -- cgit