[Zope3-checkins] CVS: Zope3/src/zope/app/undo/tests - test_prefix.py:1.1

Philipp von Weitershausen philikon at philikon.de
Sun Mar 21 12:20:32 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/undo/tests
In directory cvs.zope.org:/tmp/cvs-serv20632/src/zope/app/undo/tests

Added Files:
	test_prefix.py 
Log Message:


Provide tests for Prefix


=== Added File Zope3/src/zope/app/undo/tests/test_prefix.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.
#
##############################################################################
"""
$Id: test_prefix.py,v 1.1 2004/03/21 17:20:32 philikon Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite

def test_suite():
    return unittest.TestSuite((
        DocTestSuite('zope.app.undo'),        
        ))

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




More information about the Zope3-Checkins mailing list