(self)
| 262 | difflib.SequenceMatcher(None, old, new).get_opcodes() |
| 263 | |
| 264 | def test_make_file_default_charset(self): |
| 265 | html_diff = difflib.HtmlDiff() |
| 266 | output = html_diff.make_file(patch914575_from1.splitlines(), |
| 267 | patch914575_to1.splitlines()) |
| 268 | self.assertIn('charset="utf-8"', output) |
| 269 | |
| 270 | def test_make_file_iso88591_charset(self): |
| 271 | html_diff = difflib.HtmlDiff() |
nothing calls this directly
no test coverage detected