Changeset 759
- Timestamp:
- 10/29/05 13:39:40
- Files:
-
- branches/cherrypy-2.1/cherrypy/test/test_static_filter.py (modified) (1 diff)
- trunk/cherrypy/test/test_static_filter.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-2.1/cherrypy/test/test_static_filter.py
r527 r759 86 86 # we just check the content 87 87 self.assertMatchesBody('^Dummy stylesheet') 88 89 # Check a directory (should currently fail--no provision for it) 90 ignore = helper.webtest.ignored_exceptions 91 ignore.append(IOError) 92 try: 93 self.getPage("/static/") 94 self.assertErrorPage(500) 95 finally: 96 ignore.pop() 88 97 89 98 if __name__ == "__main__": trunk/cherrypy/test/test_static_filter.py
r527 r759 86 86 # we just check the content 87 87 self.assertMatchesBody('^Dummy stylesheet') 88 89 # Check a directory (should currently fail--no provision for it) 90 ignore = helper.webtest.ignored_exceptions 91 ignore.append(IOError) 92 try: 93 self.getPage("/static/") 94 self.assertErrorPage(500) 95 finally: 96 ignore.pop() 88 97 89 98 if __name__ == "__main__":

