92d712a0d8
3.3.0b2 -> 3.3.0rc1; refresh patches 3, 55
52 lines
2.2 KiB
Diff
52 lines
2.2 KiB
Diff
diff -up Python-3.3.0rc1/Lib/test/test_email/test_email.py.remove-mimeaudio-tests Python-3.3.0rc1/Lib/test/test_email/test_email.py
|
|
--- Python-3.3.0rc1/Lib/test/test_email/test_email.py.remove-mimeaudio-tests 2012-08-25 15:22:10.000000000 -0400
|
|
+++ Python-3.3.0rc1/Lib/test/test_email/test_email.py 2012-08-27 11:00:11.936964586 -0400
|
|
@@ -1321,47 +1321,6 @@ Blah blah blah
|
|
self.assertEqual(b.getvalue(), source + b'>From R\xc3\xb6lli\n')
|
|
|
|
|
|
-# Test the basic MIMEAudio class
|
|
-class TestMIMEAudio(unittest.TestCase):
|
|
- def setUp(self):
|
|
- with openfile('audiotest.au', 'rb') as fp:
|
|
- self._audiodata = fp.read()
|
|
- self._au = MIMEAudio(self._audiodata)
|
|
-
|
|
- def test_guess_minor_type(self):
|
|
- self.assertEqual(self._au.get_content_type(), 'audio/basic')
|
|
-
|
|
- def test_encoding(self):
|
|
- payload = self._au.get_payload()
|
|
- self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')),
|
|
- self._audiodata)
|
|
-
|
|
- def test_checkSetMinor(self):
|
|
- au = MIMEAudio(self._audiodata, 'fish')
|
|
- self.assertEqual(au.get_content_type(), 'audio/fish')
|
|
-
|
|
- def test_add_header(self):
|
|
- eq = self.assertEqual
|
|
- unless = self.assertTrue
|
|
- self._au.add_header('Content-Disposition', 'attachment',
|
|
- filename='audiotest.au')
|
|
- eq(self._au['content-disposition'],
|
|
- 'attachment; filename="audiotest.au"')
|
|
- eq(self._au.get_params(header='content-disposition'),
|
|
- [('attachment', ''), ('filename', 'audiotest.au')])
|
|
- eq(self._au.get_param('filename', header='content-disposition'),
|
|
- 'audiotest.au')
|
|
- missing = []
|
|
- eq(self._au.get_param('attachment', header='content-disposition'), '')
|
|
- unless(self._au.get_param('foo', failobj=missing,
|
|
- header='content-disposition') is missing)
|
|
- # Try some missing stuff
|
|
- unless(self._au.get_param('foobar', missing) is missing)
|
|
- unless(self._au.get_param('attachment', missing,
|
|
- header='foobar') is missing)
|
|
-
|
|
-
|
|
-
|
|
# Test the basic MIMEImage class
|
|
class TestMIMEImage(unittest.TestCase):
|
|
def setUp(self):
|