[Zodb-checkins] CVS: ZODB3/ZopeUndo/tests - __init__.py:1.1 testPrefix.py:1.1
Jeremy Hylton
jeremy@zope.com
Thu, 3 Oct 2002 13:41:53 -0400
Update of /cvs-repository/ZODB3/ZopeUndo/tests
In directory cvs.zope.org:/tmp/cvs-serv1292/ZopeUndo/tests
Added Files:
__init__.py testPrefix.py
Log Message:
Create new ZopeUndo package.
=== Added File ZODB3/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 ZODB3/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)