Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 1153

Show
Ignore:
Timestamp:
06/21/06 01:14:21
Author:
fumanchu
Message:

New "teardown_server" magic method support for test modules.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/test/helper.py

    r1141 r1153  
    115115        if setup: 
    116116            setup() 
     117         
    117118        # The setup functions probably mounted new apps. 
    118119        # Tell our server about them. 
     
    128129        suite = CPTestLoader.loadTestsFromName(testmod) 
    129130        CPTestRunner.run(suite) 
     131         
     132        teardown = getattr(m, "teardown_server", None) 
     133        if teardown: 
     134            teardown() 
    130135    thread.interrupt_main() 
    131136 

Hosted by WebFaction

Log in as guest/cpguest to create tickets