mirror of https://github.com/python/cpython.git
Add mimetools testcase.
This commit is contained in:
parent
25d1692434
commit
efffd28c2c
|
@ -0,0 +1,5 @@
|
|||
test_mimetools
|
||||
7bit PASS
|
||||
8bit PASS
|
||||
base64 PASS
|
||||
quoted-printable PASS
|
|
@ -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