(self)
| 80 | self.assertEqual(s.real_quick_ratio(), 1) |
| 81 | |
| 82 | def test_comparing_empty_lists(self): |
| 83 | # Check fix for bug #979794 |
| 84 | group_gen = difflib.SequenceMatcher(None, [], []).get_grouped_opcodes() |
| 85 | self.assertRaises(StopIteration, next, group_gen) |
| 86 | diff_gen = difflib.unified_diff([], []) |
| 87 | self.assertRaises(StopIteration, next, diff_gen) |
| 88 | |
| 89 | def test_matching_blocks_cache(self): |
| 90 | # Issue #21635 |
nothing calls this directly
no test coverage detected