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
4cbd1e3f
Kaydet (Commit)
4cbd1e3f
authored
Şub 17, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move test case for HTTP response dict to httplib.
üst
6aab16e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
test_httplib.py
Lib/test/test_httplib.py
+5
-1
test_urllib2.py
Lib/test/test_urllib2.py
+0
-4
No files found.
Lib/test/test_httplib.py
Dosyayı görüntüle @
4cbd1e3f
...
...
@@ -161,8 +161,12 @@ def _test():
resp
.
close
()
class
OfflineTest
(
TestCase
):
def
test_responses
(
self
):
self
.
assertEquals
(
httplib
.
responses
[
httplib
.
NOT_FOUND
],
"Not Found"
)
def
test_main
(
verbose
=
None
):
tests
=
[
HeaderTests
,]
tests
=
[
HeaderTests
,
OfflineTest
]
test_support
.
run_unittest
(
*
tests
)
test
()
Lib/test/test_urllib2.py
Dosyayı görüntüle @
4cbd1e3f
...
...
@@ -41,10 +41,6 @@ class TrivialTests(unittest.TestCase):
buf
=
f
.
read
()
f
.
close
()
def
test_statudict
(
self
):
# test the new-in-2.5 httpresponses dictionary
self
.
assertEquals
(
urllib2
.
httpresponses
[
404
],
"Not Found"
)
def
test_parse_http_list
(
self
):
tests
=
[(
'a,b,c'
,
[
'a'
,
'b'
,
'c'
]),
(
'path"o,l"og"i"cal, example'
,
[
'path"o,l"og"i"cal'
,
'example'
]),
...
...
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