test: complete nil renderer test

This commit is contained in:
Christian Muehlhaeuser
2022-10-09 04:19:04 +02:00
parent 8e79fdd50b
commit a11ff932fa

View File

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