summaryrefslogtreecommitdiff
path: root/tests/i18n
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2023-02-01 07:13:39 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-02-01 11:04:38 +0100
commit097e3a70c1481ee7b042b2edd91b2be86fb7b5b6 (patch)
tree7042be9ee3aabda10ecfa8923a113388b81f34a8 /tests/i18n
parent8c660fb59239828583f17cdede3b64f208b8752c (diff)
downloaddjango-097e3a70c1481ee7b042b2edd91b2be86fb7b5b6.tar.gz
Refs #33476 -- Applied Black's 2023 stable style.
Black 23.1.0 is released which, as the first release of the year, introduces the 2023 stable style. This incorporates most of last year's preview style. https://github.com/psf/black/releases/tag/23.1.0
Diffstat (limited to 'tests/i18n')
-rw-r--r--tests/i18n/test_compilation.py4
-rw-r--r--tests/i18n/test_extraction.py6
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/i18n/test_compilation.py b/tests/i18n/test_compilation.py
index 259a9668b8..ab74927c40 100644
--- a/tests/i18n/test_compilation.py
+++ b/tests/i18n/test_compilation.py
@@ -22,12 +22,10 @@ has_msgfmt = find_command("msgfmt")
@unittest.skipUnless(has_msgfmt, "msgfmt is mandatory for compilation tests")
class MessageCompilationTests(RunInTmpDirMixin, SimpleTestCase):
-
work_subdir = "commands"
class PoFileTests(MessageCompilationTests):
-
LOCALE = "es_AR"
MO_FILE = "locale/%s/LC_MESSAGES/django.mo" % LOCALE
MO_FILE_EN = "locale/en/LC_MESSAGES/django.mo"
@@ -83,7 +81,6 @@ class PoFileContentsTests(MessageCompilationTests):
class MultipleLocaleCompilationTests(MessageCompilationTests):
-
MO_FILE_HR = None
MO_FILE_FR = None
@@ -108,7 +105,6 @@ class MultipleLocaleCompilationTests(MessageCompilationTests):
class ExcludedLocaleCompilationTests(MessageCompilationTests):
-
work_subdir = "exclude"
MO_FILE = "locale/%s/LC_MESSAGES/django.mo"
diff --git a/tests/i18n/test_extraction.py b/tests/i18n/test_extraction.py
index a611eb97a1..ab73596c4a 100644
--- a/tests/i18n/test_extraction.py
+++ b/tests/i18n/test_extraction.py
@@ -33,7 +33,6 @@ requires_gettext_019 = skipIf(
@skipUnless(has_xgettext, "xgettext is mandatory for extraction tests")
class ExtractorTests(POFileAssertionMixin, RunInTmpDirMixin, SimpleTestCase):
-
work_subdir = "commands"
PO_FILE = "locale/%s/LC_MESSAGES/django.po" % LOCALE
@@ -593,7 +592,6 @@ class BasicExtractorTests(ExtractorTests):
class JavaScriptExtractorTests(ExtractorTests):
-
PO_FILE = "locale/%s/LC_MESSAGES/djangojs.po" % LOCALE
def test_javascript_literals(self):
@@ -706,7 +704,6 @@ class SymlinkExtractorTests(ExtractorTests):
class CopyPluralFormsExtractorTests(ExtractorTests):
-
PO_FILE_ES = "locale/es/LC_MESSAGES/django.po"
def test_copy_plural_forms(self):
@@ -872,7 +869,6 @@ class LocationCommentsTests(ExtractorTests):
class KeepPotFileExtractorTests(ExtractorTests):
-
POT_FILE = "locale/django.pot"
def test_keep_pot_disabled_by_default(self):
@@ -917,7 +913,6 @@ class MultipleLocaleExtractionTests(ExtractorTests):
class ExcludedLocaleExtractionTests(ExtractorTests):
-
work_subdir = "exclude"
LOCALES = ["en", "fr", "it"]
@@ -972,7 +967,6 @@ class ExcludedLocaleExtractionTests(ExtractorTests):
class CustomLayoutExtractionTests(ExtractorTests):
-
work_subdir = "project_dir"
def test_no_locale_raises(self):