(self)
| 308 | self.assertEqual(list(m), ['+ a', ' b', ' b']) |
| 309 | |
| 310 | def test_one_delete(self): |
| 311 | m = difflib.Differ().compare('a' + 'b' * 2, 'b' * 2) |
| 312 | self.assertEqual(list(m), ['- a', ' b', ' b']) |
| 313 | |
| 314 | |
| 315 | class TestOutputFormat(unittest.TestCase): |
nothing calls this directly
no test coverage detected