[Zodb-checkins] CVS: Zope3/src/persistence/tests - test_wref.py:1.1

Jim Fulton jim at zope.com
Tue Jan 6 14:50:41 EST 2004


Update of /cvs-repository/Zope3/src/persistence/tests
In directory cvs.zope.org:/tmp/cvs-serv13571/src/persistence/tests

Added Files:
	test_wref.py 
Log Message:
Added initial support for zodb-based persistent weak references.


=== Added File Zope3/src/persistence/tests/test_wref.py ===
##############################################################################
#
# Copyright (c) 2003 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.
#
##############################################################################
"""XXX short summary goes here.

$Id: test_wref.py,v 1.1 2004/01/06 19:50:39 jim Exp $
"""
import unittest
from doctest import DocTestSuite

def test_suite():
    return unittest.TestSuite((
        DocTestSuite('persistence.wref'),
        ))

if __name__ == '__main__': unittest.main()




More information about the Zodb-checkins mailing list