[Zope-Checkins] CVS: Zope3/lib/python/Zope/I18n/tests - testTranslationService.py:1.5

Stephan Richter srichter@cbu.edu
Thu, 13 Jun 2002 09:13:09 -0400


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

Modified Files:
	testTranslationService.py 
Log Message:
Made another small abstraction as promised yesterday. I made a special 
IEditableTranslationService interface for translation services that can be
addded somehow. 


=== Zope3/lib/python/Zope/I18n/tests/testTranslationService.py 1.4 => 1.5 ===
 from Zope.I18n.MessageCatalog import MessageCatalog 
 from testITranslationService import TestITranslationService
+from testIEditableTranslationService import TestIEditableTranslationService
 
-
-class TestTranslationService(TestITranslationService):
+class TestTranslationService(TestIEditableTranslationService,
+                             TestITranslationService):
 
     def _getTranslationService(self):
         service = TranslationService('default')