(self, text, value)
| 72 | del self.zz |
| 73 | |
| 74 | def checklines(self, text, value): |
| 75 | # Verify that there are lines being checked. |
| 76 | end_line = int(float(text.index('end'))) |
| 77 | |
| 78 | # Check each line for the starting text. |
| 79 | actual = [] |
| 80 | for line in range(1, end_line): |
| 81 | txt = text.get(f'{line}.0', f'{line}.end') |
| 82 | actual.append(txt.startswith(value)) |
| 83 | return actual |
| 84 | |
| 85 | def test_init(self): |
| 86 | zz = self.zz |
no test coverage detected