[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndex/tests - testSplitter.py:1.8

Jens Vagelpohl jens@zope.com
Wed, 20 Feb 2002 11:14:35 -0500


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

Modified Files:
	testSplitter.py 
Log Message:
Followed Fred's lead and removed all code that tries to gather the
module version number from a CVS substitution. This actually
caused core dumps running the unit tests on OS X.

Also changed the unit test to no longer just skip the test for the
ISO splitter on OS X.



=== Zope/lib/python/Products/PluginIndexes/TextIndex/tests/testSplitter.py 1.7 => 1.8 ===
     def testISOSplitter(self):
         """test ISOSplitter"""
-        import sys, warnings
-            
-        if sys.platform in ('darwin5',):
-            warnings.warn("Due to internal problems on Mac OS-X, this test is disabled")
-            return
-
         for text,splitted in self.testdata:
             self._test("ISO_8859_1_Splitter",text,splitted)