[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndexNG/tests - testNormalizer.py:1.1.2.3

Andreas Jung andreas@digicool.com
Wed, 6 Feb 2002 14:46:20 -0500


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TextIndexNG/tests
In directory cvs.zope.org:/tmp/cvs-serv15228/tests

Modified Files:
      Tag: ajung-textindexng-branch
	testNormalizer.py 
Log Message:
updated


=== Zope/lib/python/Products/PluginIndexes/TextIndexNG/tests/testNormalizer.py 1.1.2.2 => 1.1.2.3 ===
 
     norm = [
-        ('ä','ae'),
-        ('ö','oe'),
+            ('ä','ae'),
+            ('ö','oe'),
+            ('ß','ss')
         ]
 
     data = {
@@ -28,7 +29,6 @@
          'alle':'alle',
          'flugplätze':'flugplaetze',
          'zerstört':'zerstoert',
-         None: None
     }
 
     def setUp(self):
@@ -39,7 +39,6 @@
         """ testing single strings as argument """
 
         for word  in self.data.keys():
-
             self.assertEqual(
                 self.N.normalize(word),
                 self.data[word],