[Zope3-checkins] CVS: Zope3/src/transaction/tests -
test_util.py:1.1.2.1
Jim Fulton
jim at zope.com
Fri Jan 23 13:25:06 EST 2004
Update of /cvs-repository/Zope3/src/transaction/tests
In directory cvs.zope.org:/tmp/cvs-serv9157/src/transaction/tests
Added Files:
Tag: zope3-zodb3-devel-branch
test_util.py
Log Message:
Moved the NoSavepointSupportRollback class ro transaction,
as it's needed by any data manager that doesn't support
savepoint rollback.
=== Added File Zope3/src/transaction/tests/test_util.py ===
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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.
#
##############################################################################
"""Test transaction utilities
$Id: test_util.py,v 1.1.2.1 2004/01/23 18:25:05 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('transaction.util'),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list