Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

I think I've seen this ORM somewhere before...

Changeset 115

Show
Ignore:
Timestamp:
12/02/05 19:56:29
Author:
fumanchu
Message:

Storage tests now report (simple) time of execution.

Files:

Legend:

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

    r114 r115  
    627627        arena.create_storage(cls) 
    628628 
     629 
    629630def teardown(): 
    630631    """Tear down storage for Zoo classes.""" 
     
    644645        setup(SM_class, opts) 
    645646        suite = unittest.TestLoader().loadTestsFromTestCase(ZooTests) 
     647        startTime = datetime.datetime.now() 
    646648        tools.djvTestRunner.run(suite) 
     649        print "Ran zoo suite in:", (datetime.datetime.now() - startTime) 
    647650    finally: 
    648651        teardown()