diff --git a/tests/management_commands/__init__.py b/tests/management_commands/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/management_commands/test_create_translation_file.py b/tests/management_commands/test_create_translation_file.py deleted file mode 100644 index a110fa0..0000000 --- a/tests/management_commands/test_create_translation_file.py +++ /dev/null @@ -1,12 +0,0 @@ -from os.path import isfile - -from django.conf import settings -from django.core.management import call_command -from django.test import SimpleTestCase - - -class CreateTranslationFileTest(SimpleTestCase): - def test_command_regular(self): - call_command("create_translation_file", lang="xx") - - self.assertTrue(isfile(settings.LOCALE_PATHS[0] / "xx/LC_MESSAGES/django.po"))