testPrefix.py 1.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
##############################################################################
#
# 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.1 (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)