[Zodb-checkins] CVS: Zope3/src/zope/interface/tests -
test_surrogate.py:1.1.2.1
Jim Fulton
jim at zope.com
Fri Oct 10 07:16:39 EDT 2003
Update of /cvs-repository/Zope3/src/zope/interface/tests
In directory cvs.zope.org:/tmp/cvs-serv8781/zope/interface/tests
Added Files:
Tag: adaptergeddon-branch
test_surrogate.py
Log Message:
Committing some initial work on the adaptergeddon branch to facilitate
colaboration.
=== Added File Zope3/src/zope/interface/tests/test_surrogate.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_surrogate.py,v 1.1.2.1 2003/10/10 11:16:38 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_xxx():
"""
"""
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.interface.surrogate'),
))
if __name__ == '__main__': unittest.main()
More information about the Zodb-checkins
mailing list