No need for duplicate test(ing).py

This commit is contained in:
jbergstroem 2010-02-06 12:33:27 +01:00 committed by Paul J. Davis
parent b9482801f6
commit cb2d9203ee

View File

@ -1,13 +0,0 @@
# -*- coding: utf-8 -
def app(environ, start_response):
"""Simplest possible application object"""
data = 'Hello, World!\n'
status = '200 OK'
response_headers = [
('Content-type','text/plain'),
('Content-Length', len(data))
]
start_response(status, response_headers)
return [data]