Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
419abdaf
Kaydet (Commit)
419abdaf
authored
Eki 01, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
simple dumps/loads test case for xmlrpclib
üst
55f2099b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+23
-0
No files found.
Lib/test/test_xmlrpc.py
0 → 100644
Dosyayı görüntüle @
419abdaf
import
test_support
import
unittest
import
xmlrpclib
alist
=
[{
'astring'
:
'foo@bar.baz.spam'
,
'afloat'
:
7283.43
,
'anotherlist'
:
[
'.zyx.41'
],
'abase64'
:
xmlrpclib
.
Binary
(
"my dog has fleas"
),
'boolean'
:
xmlrpclib
.
False
,
}]
class
XMLRPCTestCase
(
unittest
.
TestCase
):
def
test_dump_load
(
self
):
self
.
assertEquals
(
alist
,
xmlrpclib
.
loads
(
xmlrpclib
.
dumps
((
alist
,)))[
0
][
0
])
def
test_main
():
test_support
.
run_unittest
(
XMLRPCTestCase
)
if
__name__
==
"__main__"
:
test_main
()
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