test: complete nil renderer test

This commit is contained in:
Christian Muehlhaeuser 2022-10-09 04:19:04 +02:00
parent 8e79fdd50b
commit a11ff932fa
1 changed files with 8 additions and 0 deletions

View File

@ -13,4 +13,12 @@ func TestNilRenderer(t *testing.T) {
if r.altScreen() {
t.Errorf("altScreen should always return false")
}
r.exitAltScreen()
r.clearScreen()
r.showCursor()
r.hideCursor()
r.enableMouseCellMotion()
r.disableMouseCellMotion()
r.enableMouseAllMotion()
r.disableMouseAllMotion()
}