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
31916324
Kaydet (Commit)
31916324
authored
Agu 10, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#18453: fix unused variables in test_xmlrpc. Patch by Vajrasky Kok.
üst
0f12be15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+10
-2
No files found.
Lib/test/test_xmlrpc.py
Dosyayı görüntüle @
31916324
...
...
@@ -3,6 +3,7 @@ import datetime
import
sys
import
time
import
unittest
from
unittest
import
mock
import
xmlrpc.client
as
xmlrpclib
import
xmlrpc.server
import
http.client
...
...
@@ -249,7 +250,14 @@ class FaultTestCase(unittest.TestCase):
class
DateTimeTestCase
(
unittest
.
TestCase
):
def
test_default
(
self
):
t
=
xmlrpclib
.
DateTime
()
with
mock
.
patch
(
'time.localtime'
)
as
localtime_mock
:
time_struct
=
time
.
struct_time
(
[
2013
,
7
,
15
,
0
,
24
,
49
,
0
,
196
,
0
])
localtime_mock
.
return_value
=
time_struct
localtime
=
time
.
localtime
()
t
=
xmlrpclib
.
DateTime
()
self
.
assertEqual
(
str
(
t
),
time
.
strftime
(
"
%
Y
%
m
%
dT
%
H:
%
M:
%
S"
,
localtime
))
def
test_time
(
self
):
d
=
1181399930.036952
...
...
@@ -286,7 +294,7 @@ class DateTimeTestCase(unittest.TestCase):
self
.
assertEqual
(
t1
,
tref
)
t2
=
xmlrpclib
.
_datetime
(
d
)
self
.
assertEqual
(
t
1
,
tref
)
self
.
assertEqual
(
t
2
,
tref
)
def
test_comparison
(
self
):
now
=
datetime
.
datetime
.
now
()
...
...
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