/tests/regressiontests/i18n/commands/compilation.py
https://code.google.com/p/mango-py/ · Python · 35 lines · 22 code · 10 blank · 3 comment · 2 complexity · 7954063bc1e0058da07cb3fb50619097 MD5 · raw file
- import os
- try:
- from cStringIO import StringIO
- except ImportError:
- from StringIO import StringIO
- from django.core.management import CommandError
- from django.core.management.commands.compilemessages import compile_messages
- from django.test import TestCase
- LOCALE='es_AR'
- class MessageCompilationTests(TestCase):
- MO_FILE='locale/%s/LC_MESSAGES/django.mo' % LOCALE
- def setUp(self):
- self._cwd = os.getcwd()
- self.test_dir = os.path.abspath(os.path.dirname(__file__))
- def tearDown(self):
- os.chdir(self._cwd)
- class PoFileTests(MessageCompilationTests):
- def test_bom_rejection(self):
- os.chdir(self.test_dir)
- # We don't use the django.core.management intrastructure (call_command()
- # et al) because CommandError's cause exit(1) there. We test the
- # underlying compile_messages function instead
- out = StringIO()
- self.assertRaises(CommandError, compile_messages, out, locale=LOCALE)
- self.assertFalse(os.path.exists(self.MO_FILE))