(self)
| 5323 | eq(x, str(make_header(decode_header(s)))) |
| 5324 | |
| 5325 | def test_us_ascii_header(self): |
| 5326 | eq = self.assertEqual |
| 5327 | s = 'hello' |
| 5328 | x = decode_header(s) |
| 5329 | eq(x, [('hello', None)]) |
| 5330 | h = make_header(x) |
| 5331 | eq(s, h.encode()) |
| 5332 | |
| 5333 | def test_string_charset(self): |
| 5334 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected