Changeset 3898

Show
Ignore:
Timestamp:
01/12/08 16:26:37 (6 months ago)
Author:
faide
Message:

Apply patch for testutil.py handling of SO tables from Matt Wilson

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/CHANGELOG.txt

    r3847 r3898  
    33 
    44 
    5 1.0.4
    6 ------ 
     51.0.4b4 (January, xx, xxxx)
     6---------------------------- 
    77 
    88Changes 
     
    1616~~~~~ 
    1717 
     18* Fixed teardown for SQLObject tables (#1674). 
    1819* Fixed VisitFilter when Identity is on and there are list parameters (#1622). 
    1920* Paginate does a better handling of zeroed limit, avoiding ZeroDivisionError 
     
    2526~~~~~~~~~~~~ 
    2627 
    27 Toshio Kuratomi, Christoph Zwerschke, Jan ONDREJ (SAL)
     28Florent Aide, Toshio Kuratomi, Jan ONDREJ (SAL), Matt Wilson, Christoph Zwerschke
    2829 
    2930 
     
    3738  ``default_reversed`` parameter has been deprecated. It will still be used 
    3839  if it is informed, but a DeprecationWarning will be displayed. 
    39  
    4040Changes 
    4141~~~~~~~ 
  • branches/1.0/turbogears/testutil.py

    r3758 r3898  
    181181    def tearDown(self): 
    182182        database.rollback_all() 
    183         for item in self._get_soClasses(): 
     183        for item in self.reversed(self._get_soClasses()): 
    184184            if isinstance(item, types.TypeType) and issubclass(item, 
    185185                sqlobject.SQLObject) and item != sqlobject.SQLObject \