mirror of
https://github.com/python/cpython.git
synced 2024-11-25 02:44:06 +08:00
Add mimetools testcase.
This commit is contained in:
parent
25d1692434
commit
efffd28c2c
5
Lib/test/output/test_mimetools
Normal file
5
Lib/test/output/test_mimetools
Normal file
@ -0,0 +1,5 @@
|
||||
test_mimetools
|
||||
7bit PASS
|
||||
8bit PASS
|
||||
base64 PASS
|
||||
quoted-printable PASS
|
18
Lib/test/test_mimetools.py
Normal file
18
Lib/test/test_mimetools.py
Normal file
@ -0,0 +1,18 @@
|
||||
from test_support import TestFailed
|
||||
import mimetools
|
||||
|
||||
import string,StringIO
|
||||
start = string.letters + "=" + string.digits + "\n"
|
||||
for enc in ['7bit','8bit','base64','quoted-printable']:
|
||||
print enc,
|
||||
i = StringIO.StringIO(start)
|
||||
o = StringIO.StringIO()
|
||||
mimetools.encode(i,o,enc)
|
||||
i = StringIO.StringIO(o.getvalue())
|
||||
o = StringIO.StringIO()
|
||||
mimetools.decode(i,o,enc)
|
||||
if o.getvalue()==start:
|
||||
print "PASS"
|
||||
else:
|
||||
print "FAIL"
|
||||
print o.getvalue()
|
Loading…
Reference in New Issue
Block a user