(self)
| 129 | return lines |
| 130 | |
| 131 | def test_unfound(self): |
| 132 | pat = 'xyz*'*7 |
| 133 | lines = self.report(pat) |
| 134 | self.assertEqual(len(lines), 2) |
| 135 | self.assertIn(pat, lines[0]) |
| 136 | self.assertEqual(lines[1], 'No hits.') |
| 137 | |
| 138 | def test_found(self): |
| 139 |
nothing calls this directly
no test coverage detected