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
76fffd81
Kaydet (Commit)
76fffd81
authored
Mar 22, 2002
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a simple test suite for netrc.py, and remove it from test_sundry
üst
bab22bed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
1 deletion
+43
-1
test_netrc.py
Lib/test/test_netrc.py
+43
-0
test_sundry.py
Lib/test/test_sundry.py
+0
-1
No files found.
Lib/test/test_netrc.py
0 → 100644
Dosyayı görüntüle @
76fffd81
import
netrc
,
os
,
tempfile
,
test_support
,
unittest
TEST_NETRC
=
"""
machine foo login log1 password pass1 account acct1
macdef macro1
line1
line2
macdef macro2
line3
line4
default login log2 password pass2
"""
temp_filename
=
tempfile
.
mktemp
()
class
NetrcTestCase
(
unittest
.
TestCase
):
def
setUp
(
self
):
fp
=
open
(
temp_filename
,
'wt'
)
fp
.
write
(
TEST_NETRC
)
fp
.
close
()
self
.
netrc
=
netrc
.
netrc
(
temp_filename
)
def
tearDown
(
self
):
del
self
.
netrc
os
.
unlink
(
temp_filename
)
def
test_case_1
(
self
):
self
.
assert_
(
self
.
netrc
.
macros
==
{
'macro1'
:[
'line1
\n
'
,
'line2
\n
'
],
'macro2'
:[
'line3
\n
'
,
'line4
\n
'
]}
)
self
.
assert_
(
self
.
netrc
.
hosts
[
'foo'
]
==
(
'log1'
,
'acct1'
,
'pass1'
))
self
.
assert_
(
self
.
netrc
.
hosts
[
'default'
]
==
(
'log2'
,
None
,
'pass2'
))
if
__name__
==
"__main__"
:
test_support
.
run_unittest
(
NetrcTestCase
)
Lib/test/test_sundry.py
Dosyayı görüntüle @
76fffd81
...
...
@@ -55,7 +55,6 @@ import mimetypes
import
mimify
import
multifile
import
mutex
import
netrc
import
nntplib
import
nturl2path
import
pdb
...
...
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