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/query_string/wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/python/query_string/wsgi.py (limited to 'test/python/query_string/wsgi.py') diff --git a/test/python/query_string/wsgi.py b/test/python/query_string/wsgi.py new file mode 100644 index 00000000..90f1c7ec --- /dev/null +++ b/test/python/query_string/wsgi.py @@ -0,0 +1,7 @@ +def application(environ, start_response): + + start_response('200', [ + ('Content-Length', '0'), + ('Query-String', environ.get('QUERY_STRING')) + ]) + return [] -- cgit