[Zope-Checkins] CVS: Zope3/lib/python/Zope/I18n/tests - testII18nAware.py:1.2 testIReadMessageCatalog.py:1.2 testIReadTranslationService.py:1.3 testISyncTranslationService.py:1.2 testIWriteMessageCatalog.py:1.2 testIWriteTranslationService.py:1.2

Martijn Pieters mj@zope.com
Mon, 1 Jul 2002 13:45:53 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/I18n/tests
In directory cvs.zope.org:/tmp/cvs-serv11966/lib/python/Zope/I18n/tests

Modified Files:
	testII18nAware.py testIReadMessageCatalog.py 
	testIReadTranslationService.py testISyncTranslationService.py 
	testIWriteMessageCatalog.py testIWriteTranslationService.py 
Log Message:
Fix all occurences of "def test_suite(): pass".

The test runner no longer tolerates empty returns from test_suite(), and the
PyUnit GUI testrunner now runs exactly the same number of tests as the
command line version (currently 1904).


=== Zope3/lib/python/Zope/I18n/tests/testII18nAware.py 1.1 => 1.2 ===
 
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty
 


=== Zope3/lib/python/Zope/I18n/tests/testIReadMessageCatalog.py 1.1 => 1.2 ===
 
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty


=== Zope3/lib/python/Zope/I18n/tests/testIReadTranslationService.py 1.2 => 1.3 ===
         
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty


=== Zope3/lib/python/Zope/I18n/tests/testISyncTranslationService.py 1.1 => 1.2 ===
         
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty


=== Zope3/lib/python/Zope/I18n/tests/testIWriteMessageCatalog.py 1.1 => 1.2 ===
 
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty


=== Zope3/lib/python/Zope/I18n/tests/testIWriteTranslationService.py 1.1 => 1.2 ===
         
 def test_suite():
-    pass
+    return unittest.TestSuite() # Deliberatly empty