Changeset 2060
- Timestamp:
- 10/31/08 09:19:03
- Files:
-
- trunk/cherrypy/test/test_dynamicobjectmapping.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/test_dynamicobjectmapping.py
r2059 r2060 21 21 return "SubSubRoot handler" 22 22 handler.exposed = True 23 24 def dispatch(self): 25 return "SubSubRoot dispatch" 26 dispatch.exposed = True 23 27 24 28 subsubnodes = { … … 218 222 self.assertBody('SubSubRoot handler') 219 223 224 self.getPage('/2/2/dispatch') 225 self.assertBody('SubSubRoot dispatch') 226 220 227 # Dynamic dispatch will fail here for the subsubnodes 221 228 # so the SubRoot gets called

