(self, a, b, n)
| 560 | |
| 561 | class TestFindLongest(unittest.TestCase): |
| 562 | def longer_match_exists(self, a, b, n): |
| 563 | return any(b_part in a for b_part in |
| 564 | [b[i:i + n + 1] for i in range(0, len(b) - n - 1)]) |
| 565 | |
| 566 | def test_default_args(self): |
| 567 | a = 'foo bar' |
no test coverage detected