(self)
| 119 | |
| 120 | # Prefix 'a' tests skip line2, which starts with 'b' |
| 121 | def test_fetch_prev_prefix(self): |
| 122 | prefix = 'a' |
| 123 | self.text.insert('iomark', prefix) |
| 124 | self.fetch_test(True, line1, prefix, 0) |
| 125 | self.fetch_test(True, prefix, None, None, bell=True) |
| 126 | |
| 127 | def test_fetch_next_prefix(self): |
| 128 | prefix = 'a' |
nothing calls this directly
no test coverage detected