############################################################################## # # Copyright (c) 2003 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Conventience function for creating test databases $Id: util.py 30723 2005-06-09 19:15:18Z jim $ """ import time import persistent import transaction from ZODB.MappingStorage import MappingStorage from ZODB.DB import DB as _DB def DB(name='Test', **dbargs): return _DB(MappingStorage(name), **dbargs) def commit(): transaction.commit() def pack(db): db.pack(time.time()+1) class P(persistent.Persistent): def __init__(self, name): self.name = name def __repr__(self): return 'P(%s)' % self.name