summaryrefslogtreecommitdiff
path: root/src/zope/i18n/tests/test_zcml.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/i18n/tests/test_zcml.py')
-rw-r--r--src/zope/i18n/tests/test_zcml.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zope/i18n/tests/test_zcml.py b/src/zope/i18n/tests/test_zcml.py
index d4574c8..63d6ffe 100644
--- a/src/zope/i18n/tests/test_zcml.py
+++ b/src/zope/i18n/tests/test_zcml.py
@@ -43,6 +43,15 @@ class DirectivesTest(PlacelessSetup, unittest.TestCase):
from zope.configuration import xmlconfig
super(DirectivesTest, self).setUp()
self.context = xmlconfig.file('meta.zcml', zope.i18n)
+ self.allowed = config.ALLOWED_LANGUAGES
+ self.compiled = config.COMPILE_MO_FILES
+ config.ALLOWED_LANGUAGES = None
+ config.COMPILE_MO_FILES = False
+
+ def tearDown(self):
+ super(DirectivesTest, self).tearDown()
+ config.ALLOWED_LANGUAGES = self.allowed
+ config.COMPILE_MO_FILES = self.compiled
def testRegisterTranslations(self):
from zope.configuration import xmlconfig