(self)
| 5253 | eq(x, str(make_header(decode_header(s)))) |
| 5254 | |
| 5255 | def test_us_ascii_header(self): |
| 5256 | eq = self.assertEqual |
| 5257 | s = 'hello' |
| 5258 | x = decode_header(s) |
| 5259 | eq(x, [('hello', None)]) |
| 5260 | h = make_header(x) |
| 5261 | eq(s, h.encode()) |
| 5262 | |
| 5263 | def test_string_charset(self): |
| 5264 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected