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
089d9ca1
Kaydet (Commit)
089d9ca1
authored
Eyl 27, 2012
tarafından
Ian Clelland
Kaydeden (comit)
Luke Plant
Ara 24, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add assertJSONEqual method to TestCase
üst
dc704516
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
testcases.py
django/test/testcases.py
+12
-0
No files found.
django/test/testcases.py
Dosyayı görüntüle @
089d9ca1
...
...
@@ -407,6 +407,18 @@ class SimpleTestCase(ut2.TestCase):
self
.
assertTrue
(
real_count
!=
0
,
msg_prefix
+
"Couldn't find '
%
s' in response"
%
needle
)
def
assertJSONEqual
(
self
,
raw
,
expected_data
,
msg
=
None
):
try
:
data
=
json
.
loads
(
raw
)
except
ValueError
:
self
.
fail
(
"First argument is not valid JSON:
%
r"
%
raw
)
if
isinstance
(
expected_data
,
six
.
string_types
):
try
:
expected_data
=
json
.
loads
(
expected_data
)
except
ValueError
:
self
.
fail
(
"Second argument is not valid JSON:
%
r"
%
expected_data
)
self
.
assertEqual
(
data
,
expected_data
,
msg
=
msg
)
def
assertXMLEqual
(
self
,
xml1
,
xml2
,
msg
=
None
):
"""
Asserts that two XML snippets are semantically the same.
...
...
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