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
20d27785
Kaydet (Commit)
20d27785
authored
Kas 17, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed obsolete comments about Django 1.10 in two test files.
üst
5abed864
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
8 deletions
+1
-8
test_for.py
tests/template_tests/syntax_tests/test_for.py
+0
-3
test_csrf.py
tests/view_tests/tests/test_csrf.py
+1
-5
No files found.
tests/template_tests/syntax_tests/test_for.py
Dosyayı görüntüle @
20d27785
...
...
@@ -126,9 +126,6 @@ class ForTagTests(SimpleTestCase):
output
=
self
.
engine
.
render_to_string
(
'for-tag-filter-ws'
,
{
's'
:
'abc'
})
self
.
assertEqual
(
output
,
'abc'
)
# These tests raise deprecation warnings and will raise an exception
# in Django 1.10. The existing behavior is silent truncation if the
# length of loopvars differs to the length of each set of items.
@setup
({
'for-tag-unpack10'
:
'{
%
for x,y in items
%
}{{ x }}:{{ y }}/{
%
endfor
%
}'
})
def
test_for_tag_unpack10
(
self
):
with
self
.
assertRaisesMessage
(
ValueError
,
'Need 2 values to unpack in for loop; got 3.'
):
...
...
tests/view_tests/tests/test_csrf.py
Dosyayı görüntüle @
20d27785
...
...
@@ -63,11 +63,7 @@ class CsrfViewTests(SimpleTestCase):
"by third parties."
,
status_code
=
403
)
# In Django 1.10, this can be changed to TEMPLATES=[] because the code path
# that reads the TEMPLATE_* settings in that case will have been removed.
@override_settings
(
TEMPLATES
=
[{
'BACKEND'
:
'django.template.backends.dummy.TemplateStrings'
,
}])
@override_settings
(
TEMPLATES
=
[])
def
test_no_django_template_engine
(
self
):
"""
The CSRF view doesn't depend on the TEMPLATES configuration (#24388).
...
...
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