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
2fd7fc13
Kaydet (Commit)
2fd7fc13
authored
Ara 18, 2013
tarafından
Loic Bistuer
Kaydeden (comit)
Tim Graham
Ara 18, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #17413 -- Added isinstance backward compatibility on ErrorList.
üst
b6203144
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
utils.py
django/forms/utils.py
+1
-1
test_forms.py
tests/forms_tests/tests/test_forms.py
+25
-0
No files found.
django/forms/utils.py
Dosyayı görüntüle @
2fd7fc13
...
...
@@ -79,7 +79,7 @@ class ErrorDict(dict):
@python_2_unicode_compatible
class
ErrorList
(
UserList
):
class
ErrorList
(
UserList
,
list
):
"""
A collection of errors that knows how to display itself in various formats.
"""
...
...
tests/forms_tests/tests/test_forms.py
Dosyayı görüntüle @
2fd7fc13
...
...
@@ -15,6 +15,7 @@ from django.forms import (
NullBooleanField
,
PasswordInput
,
RadioSelect
,
Select
,
SplitDateTimeField
,
Textarea
,
TextInput
,
ValidationError
,
widgets
,
)
from
django.forms.utils
import
ErrorList
from
django.http
import
QueryDict
from
django.template
import
Template
,
Context
from
django.test
import
TestCase
...
...
@@ -2069,3 +2070,27 @@ class FormsTestCase(TestCase):
'__all__'
:
[{
'code'
:
'secret'
,
'message'
:
'Non-field error.'
}]
}
self
.
assertEqual
(
errors
,
control
)
def
test_error_list
(
self
):
e
=
ErrorList
()
e
.
append
(
'Foo'
)
e
.
append
(
ValidationError
(
'Foo
%(bar)
s'
,
code
=
'foobar'
,
params
=
{
'bar'
:
'bar'
}))
self
.
assertTrue
(
isinstance
(
e
,
list
))
self
.
assertIn
(
'Foo'
,
e
)
self
.
assertIn
(
'Foo'
,
forms
.
ValidationError
(
e
))
self
.
assertEqual
(
e
.
as_text
(),
'* Foo
\n
* Foobar'
)
self
.
assertEqual
(
e
.
as_ul
(),
'<ul class="errorlist"><li>Foo</li><li>Foobar</li></ul>'
)
self
.
assertEqual
(
json
.
loads
(
e
.
as_json
()),
[{
"message"
:
"Foo"
,
"code"
:
""
},
{
"message"
:
"Foobar"
,
"code"
:
"foobar"
}]
)
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