Changeset 1428
- Timestamp:
- 11/13/06 17:41:35
- Files:
-
- trunk/cherrypy/test/test_virtualhost.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/test_virtualhost.py
r1275 r1428 30 30 return "You sent %s" % repr(value) 31 31 vmethod.exposed = True 32 33 def url(self): 34 return cherrypy.url("nextpage") 35 url.exposed = True 32 36 33 37 … … 72 76 self.getPage("/vmethod/pos", [('Host', 'www.mydom3.com')]) 73 77 self.assertBody("You sent 'pos'") 78 79 self.getPage("/url", [('Host', 'www.mydom2.com')]) 80 self.assertBody("http://www.mydom2.com/nextpage") 74 81 75 82

