(self)
| 634 | # Happy paths are tested in the doctests of `difflib.restore`. |
| 635 | |
| 636 | def test_invalid_input(self): |
| 637 | with self.assertRaises(ValueError): |
| 638 | ''.join(difflib.restore([], 0)) |
| 639 | with self.assertRaises(ValueError): |
| 640 | ''.join(difflib.restore([], 3)) |
| 641 | |
| 642 | |
| 643 | def setUpModule(): |
nothing calls this directly
no test coverage detected