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
275dfda6
Kaydet (Commit)
275dfda6
authored
May 22, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert binhex regression test to PyUnit. We could use a better test
for this.
üst
dea48ec5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
40 deletions
+38
-40
test_binhex.py
Lib/test/test_binhex.py
+38
-40
No files found.
Lib/test/test_binhex.py
Dosyayı görüntüle @
275dfda6
...
@@ -2,46 +2,44 @@
...
@@ -2,46 +2,44 @@
"""Test script for the binhex C module
"""Test script for the binhex C module
Uses the mechanism of the python binhex module
Uses the mechanism of the python binhex module
Roger E. Masse
Based on an original test by Roger E. Masse.
"""
"""
import
binhex
import
binhex
import
os
import
tempfile
import
tempfile
from
test_support
import
verbose
,
TestSkipped
import
test_support
import
unittest
def
test
():
try
:
class
BinHexTestCase
(
unittest
.
TestCase
):
fname1
=
tempfile
.
mktemp
()
fname2
=
tempfile
.
mktemp
()
def
setUp
(
self
):
f
=
open
(
fname1
,
'w'
)
self
.
fname1
=
tempfile
.
mktemp
()
except
:
self
.
fname2
=
tempfile
.
mktemp
()
raise
TestSkipped
,
"Cannot test binhex without a temp file"
def
tearDown
(
self
):
start
=
'Jack is my hero'
try
:
os
.
unlink
(
self
.
fname1
)
f
.
write
(
start
)
except
OSError
:
pass
f
.
close
()
try
:
os
.
unlink
(
self
.
fname2
)
binhex
.
binhex
(
fname1
,
fname2
)
except
OSError
:
pass
if
verbose
:
print
'binhex'
DATA
=
'Jack is my hero'
binhex
.
hexbin
(
fname2
,
fname1
)
def
test_binhex
(
self
):
if
verbose
:
f
=
open
(
self
.
fname1
,
'w'
)
print
'hexbin'
f
.
write
(
self
.
DATA
)
f
.
close
()
f
=
open
(
fname1
,
'r'
)
finish
=
f
.
readline
()
binhex
.
binhex
(
self
.
fname1
,
self
.
fname2
)
f
.
close
()
# on Windows an open file cannot be unlinked
binhex
.
hexbin
(
self
.
fname2
,
self
.
fname1
)
if
start
!=
finish
:
print
'Error: binhex != hexbin'
f
=
open
(
self
.
fname1
,
'r'
)
elif
verbose
:
finish
=
f
.
readline
()
print
'binhex == hexbin'
f
.
close
()
try
:
self
.
assertEqual
(
self
.
DATA
,
finish
)
import
os
os
.
unlink
(
fname1
)
os
.
unlink
(
fname2
)
test_support
.
run_unittest
(
BinHexTestCase
)
except
:
pass
test
()
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