(self)
| 182 | assert history.entries[0] == "entry-2" |
| 183 | |
| 184 | def test_clear(self): |
| 185 | history = InputHistory() |
| 186 | history.add("data") |
| 187 | history.clear() |
| 188 | assert history.size == 0 |
| 189 | |
| 190 | |
| 191 | class TestMultiline: |
nothing calls this directly
no test coverage detected