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
62d40740
Kaydet (Commit)
62d40740
authored
Agu 02, 2015
tarafından
Caio Ariede
Kaydeden (comit)
Tim Graham
Agu 04, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25191 -- Added string diff to SimpleTestCase.assertXMLEqual() message.
üst
c6c00fbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
testcases.py
django/test/testcases.py
+7
-0
tests.py
tests/test_utils/tests.py
+13
-0
No files found.
django/test/testcases.py
Dosyayı görüntüle @
62d40740
...
...
@@ -784,6 +784,13 @@ class SimpleTestCase(unittest.TestCase):
else
:
if
not
result
:
standardMsg
=
'
%
s !=
%
s'
%
(
safe_repr
(
xml1
,
True
),
safe_repr
(
xml2
,
True
))
diff
=
(
'
\n
'
+
'
\n
'
.
join
(
difflib
.
ndiff
(
six
.
text_type
(
xml1
)
.
splitlines
(),
six
.
text_type
(
xml2
)
.
splitlines
(),
)
))
standardMsg
=
self
.
_truncateMessage
(
standardMsg
,
diff
)
self
.
fail
(
self
.
_formatMessage
(
msg
,
standardMsg
))
def
assertXMLNotEqual
(
self
,
xml1
,
xml2
,
msg
=
None
):
...
...
tests/test_utils/tests.py
Dosyayı görüntüle @
62d40740
...
...
@@ -710,6 +710,19 @@ class XMLEqualTests(SimpleTestCase):
with
self
.
assertRaises
(
AssertionError
):
self
.
assertXMLEqual
(
xml1
,
xml2
)
def
test_simple_equal_raises_message
(
self
):
xml1
=
"<elem attr1='a' />"
xml2
=
"<elem attr2='b' attr1='a' />"
msg
=
'''{xml1} != {xml2}
- <elem attr1='a' />
+ <elem attr2='b' attr1='a' />
? ++++++++++
'''
.
format
(
xml1
=
repr
(
xml1
),
xml2
=
repr
(
xml2
))
with
self
.
assertRaisesMessage
(
AssertionError
,
msg
):
self
.
assertXMLEqual
(
xml1
,
xml2
)
def
test_simple_not_equal
(
self
):
xml1
=
"<elem attr1='a' attr2='c' />"
xml2
=
"<elem attr1='a' attr2='b' />"
...
...
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