changeset 57:6bfe6c59b64a

add documentation and correct capitalization
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 01 Mar 2012 15:35:47 -0800
parents 2e60fb704454
children cd88f80d1ab1
files tests/doctest.txt tests/test.py
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/doctest.txt	Thu Mar 01 15:32:17 2012 -0800
+++ b/tests/doctest.txt	Thu Mar 01 15:35:47 2012 -0800
@@ -1,6 +1,8 @@
 Test simpypi
 ============
 
+Test the WSGI app with mock requests from ``paste.fixture.TestApp``.
+
 The obligatory imports::
 
     >>> import os
--- a/tests/test.py	Thu Mar 01 15:32:17 2012 -0800
+++ b/tests/test.py	Thu Mar 01 15:35:47 2012 -0800
@@ -31,7 +31,7 @@
     directory = os.path.dirname(os.path.abspath(__file__))
     extraglobs = {'here': directory,
                   'create_virtualenv': create_virtualenv,
-                  'server': testserver.TestWSGIserver }
+                  'server': testserver.TestWSGIServer }
     doctest_args = dict(extraglobs=extraglobs, raise_on_error=raise_on_error)
     if report_first:
         doctest_args['optionflags'] = doctest.REPORT_ONLY_FIRST_FAILURE