(self, a, b, n)
| 576 | |
| 577 | class TestFindLongest(unittest.TestCase): |
| 578 | def longer_match_exists(self, a, b, n): |
| 579 | return any(b_part in a for b_part in |
| 580 | [b[i:i + n + 1] for i in range(0, len(b) - n - 1)]) |
| 581 | |
| 582 | def test_default_args(self): |
| 583 | a = 'foo bar' |
no test coverage detected