From 3c8abcaef8ea32f0d39eb3645e437f93961e4459 Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Thu, 29 Feb 2024 15:54:29 +0100 Subject: [PATCH] v9.6.0 --- tests/management_commands/__init__.py | 0 .../test_create_translation_file.py | 12 ------------ 2 files changed, 12 deletions(-) delete mode 100644 tests/management_commands/__init__.py delete mode 100644 tests/management_commands/test_create_translation_file.py 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"))