Simplified i18n commands tests.
This commit is contained in:
parent
248aee1606
commit
295650bd01
|
@ -1,16 +1,16 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from django.core.management import call_command, CommandError
|
from django.core.management import call_command, CommandError
|
||||||
from django.test import TestCase
|
from django.test import SimpleTestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils import translation, six
|
from django.utils import translation
|
||||||
from django.utils._os import upath
|
from django.utils._os import upath
|
||||||
from django.utils.six import StringIO
|
from django.utils.six import StringIO
|
||||||
|
|
||||||
test_dir = os.path.abspath(os.path.dirname(upath(__file__)))
|
test_dir = os.path.abspath(os.path.dirname(upath(__file__)))
|
||||||
|
|
||||||
|
|
||||||
class MessageCompilationTests(TestCase):
|
class MessageCompilationTests(SimpleTestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self._cwd = os.getcwd()
|
self._cwd = os.getcwd()
|
||||||
|
|
|
@ -6,7 +6,7 @@ import re
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
from django.core import management
|
from django.core import management
|
||||||
from django.test import TestCase
|
from django.test import SimpleTestCase
|
||||||
from django.utils.encoding import force_text
|
from django.utils.encoding import force_text
|
||||||
from django.utils._os import upath
|
from django.utils._os import upath
|
||||||
from django.utils.six import StringIO
|
from django.utils.six import StringIO
|
||||||
|
@ -14,7 +14,7 @@ from django.utils.six import StringIO
|
||||||
|
|
||||||
LOCALE='de'
|
LOCALE='de'
|
||||||
|
|
||||||
class ExtractorTests(TestCase):
|
class ExtractorTests(SimpleTestCase):
|
||||||
|
|
||||||
PO_FILE='locale/%s/LC_MESSAGES/django.po' % LOCALE
|
PO_FILE='locale/%s/LC_MESSAGES/django.po' % LOCALE
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue