(self)
| 439 | |
| 440 | # test_headerregistry.TestContentTypeHeader.spaces_around_param_equals |
| 441 | def test_get_param_liberal(self): |
| 442 | msg = Message() |
| 443 | msg['Content-Type'] = 'Content-Type: Multipart/mixed; boundary = "CPIMSSMTPC06p5f3tG"' |
| 444 | self.assertEqual(msg.get_param('boundary'), 'CPIMSSMTPC06p5f3tG') |
| 445 | |
| 446 | def test_get_param(self): |
| 447 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected