Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
c19bc2d5
Kaydet (Commit)
c19bc2d5
authored
Haz 08, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed tests from refs #24922 when run in reverse.
üst
bbff3147
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_templates.py
tests/check_framework/test_templates.py
+4
-2
No files found.
tests/check_framework/test_templates.py
Dosyayı görüntüle @
c19bc2d5
from
copy
import
deepcopy
from
django.core.checks.templates
import
E001
from
django.test
import
SimpleTestCase
from
django.test.utils
import
override_settings
...
...
@@ -27,13 +29,13 @@ class CheckTemplateSettingsAppDirsTest(SimpleTestCase):
self
.
assertEqual
(
self
.
func
(
None
),
[
E001
])
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'
]
with
self
.
settings
(
TEMPLATES
=
TEMPLATES
):
self
.
assertEqual
(
self
.
func
(
None
),
[])
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'
]
with
self
.
settings
(
TEMPLATES
=
TEMPLATES
):
self
.
assertEqual
(
self
.
func
(
None
),
[])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment