(self)
| 268 | self.assertIn('charset="utf-8"', output) |
| 269 | |
| 270 | def test_make_file_iso88591_charset(self): |
| 271 | html_diff = difflib.HtmlDiff() |
| 272 | output = html_diff.make_file(patch914575_from1.splitlines(), |
| 273 | patch914575_to1.splitlines(), |
| 274 | charset='iso-8859-1') |
| 275 | self.assertIn('charset="iso-8859-1"', output) |
| 276 | |
| 277 | def test_make_file_usascii_charset_with_nonascii_input(self): |
| 278 | html_diff = difflib.HtmlDiff() |
nothing calls this directly
no test coverage detected