From cc83e06efff71b81ca5a3ac6df65775971181295 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 7 Mar 2016 18:52:36 -0800 Subject: tox.ini: Measure test coverage --- tests/urlparser_data/python/sub/simpleapp.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/urlparser_data/python/sub/simpleapp.py (limited to 'tests/urlparser_data/python/sub/simpleapp.py') diff --git a/tests/urlparser_data/python/sub/simpleapp.py b/tests/urlparser_data/python/sub/simpleapp.py new file mode 100644 index 0000000..88bd975 --- /dev/null +++ b/tests/urlparser_data/python/sub/simpleapp.py @@ -0,0 +1,4 @@ +def application(environ, start_response): + start_response('200 OK', [('Content-type', 'text/html'), + ('test-header', 'TEST!')]) + return [b'subsimple'] -- cgit v1.2.1