Kaydet (Commit) c19bc2d5 authored tarafından Tim Graham's avatar Tim Graham

Fixed tests from refs #24922 when run in reverse.

üst bbff3147
from copy import deepcopy
from django.core.checks.templates import E001 from django.core.checks.templates import E001
from django.test import SimpleTestCase from django.test import SimpleTestCase
from django.test.utils import override_settings from django.test.utils import override_settings
...@@ -27,13 +29,13 @@ class CheckTemplateSettingsAppDirsTest(SimpleTestCase): ...@@ -27,13 +29,13 @@ class CheckTemplateSettingsAppDirsTest(SimpleTestCase):
self.assertEqual(self.func(None), [E001]) self.assertEqual(self.func(None), [E001])
def test_app_dirs_removed(self): def test_app_dirs_removed(self):
TEMPLATES = self.TEMPLATES_APP_DIRS_AND_LOADERS[:] TEMPLATES = deepcopy(self.TEMPLATES_APP_DIRS_AND_LOADERS)
del TEMPLATES[0]['APP_DIRS'] del TEMPLATES[0]['APP_DIRS']
with self.settings(TEMPLATES=TEMPLATES): with self.settings(TEMPLATES=TEMPLATES):
self.assertEqual(self.func(None), []) self.assertEqual(self.func(None), [])
def test_loaders_removed(self): def test_loaders_removed(self):
TEMPLATES = self.TEMPLATES_APP_DIRS_AND_LOADERS[:] TEMPLATES = deepcopy(self.TEMPLATES_APP_DIRS_AND_LOADERS)
del TEMPLATES[0]['OPTIONS']['loaders'] del TEMPLATES[0]['OPTIONS']['loaders']
with self.settings(TEMPLATES=TEMPLATES): with self.settings(TEMPLATES=TEMPLATES):
self.assertEqual(self.func(None), []) self.assertEqual(self.func(None), [])
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment