Simplified i18n commands tests.

This commit is contained in:
Ramiro Morales 2013-01-17 00:35:46 -03:00
parent 248aee1606
commit 295650bd01
2 changed files with 5 additions and 5 deletions

View File

@ -1,16 +1,16 @@
import os
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.utils import translation, six
from django.utils import translation
from django.utils._os import upath
from django.utils.six import StringIO
test_dir = os.path.abspath(os.path.dirname(upath(__file__)))
class MessageCompilationTests(TestCase):
class MessageCompilationTests(SimpleTestCase):
def setUp(self):
self._cwd = os.getcwd()

View File

@ -6,7 +6,7 @@ import re
import shutil
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._os import upath
from django.utils.six import StringIO
@ -14,7 +14,7 @@ from django.utils.six import StringIO
LOCALE='de'
class ExtractorTests(TestCase):
class ExtractorTests(SimpleTestCase):
PO_FILE='locale/%s/LC_MESSAGES/django.po' % LOCALE