[Zodb-checkins] CVS: Zope/lib/python/ZopeUndo/tests - __init__.py:1.1.22.1 testPrefix.py:1.1.22.1
Jeremy Hylton
jeremy@zope.com
Fri, 15 Nov 2002 12:28:05 -0500
Update of /cvs-repository/Zope/lib/python/ZopeUndo/tests
In directory cvs.zope.org:/tmp/cvs-serv2910/lib/python/ZopeUndo/tests
Added Files:
Tag: Zope-2_6-branch
__init__.py testPrefix.py
Log Message:
Add ZopeUndo package to Zope 2.6.
This package is used to allow undo to work when ZEO is running with a
separate lib/python from Zope.
=== Added File Zope/lib/python/ZopeUndo/tests/__init__.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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
#
##############################################################################
=== Added File Zope/lib/python/ZopeUndo/tests/testPrefix.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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
#
##############################################################################
from ZopeUndo.Prefix import Prefix
import unittest
class PrefixTest(unittest.TestCase):
def test(self):
p1 = (Prefix("/a/b"),
("/a/b", "/a/b/c", "/a/b/c/d"),
("", "/a/c"))
p2 = (Prefix(""),
("", "/def", "/a/b", "/a/b/c", "/a/b/c/d"),
())
for prefix, equal, notequal in p1, p2:
for s in equal:
self.assertEqual(prefix, s)
for s in notequal:
self.assertNotEqual(prefix, s)
def test_suite():
return unittest.makeSuite(PrefixTest)