Changeset 2668
- Timestamp:
- 04/24/10 17:19:13
- Files:
-
- trunk/cherrypy/test/__init__.py (modified) (1 diff)
- trunk/cherrypy/test/webtest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/__init__.py
r2637 r2668 1 1 """Regression test suite for CherryPy. 2 2 3 Run test.py to exercise all tests. 3 Run 'nosetests -s test/' to exercise all tests. 4 5 The '-s' flag instructs nose to output stdout messages, wihch is crucial to 6 the 'interactive' mode of webtest.py. If you run these tests without the '-s' 7 flag, don't be surprised if the test seems to hang: it's waiting for your 8 interactive input. 4 9 """ 5 10 trunk/cherrypy/test/webtest.py
r2637 r2668 243 243 244 244 def _handlewebError(self, msg): 245 import cherrypy246 245 print("") 247 246 print(" ERROR: %s" % msg)

