(self)
| 387 | |
| 388 | # test_headerregistry.TestContentTypeHeader.bad_params |
| 389 | def test_bad_param(self): |
| 390 | msg = email.message_from_string("Content-Type: blarg; baz; boo\n") |
| 391 | self.assertEqual(msg.get_param('baz'), '') |
| 392 | |
| 393 | def test_continuation_sorting_part_order(self): |
| 394 | msg = email.message_from_string( |
nothing calls this directly
no test coverage detected