forked from Mirrors/bubbletea
test: complete nil renderer test
This commit is contained in:
parent
8e79fdd50b
commit
a11ff932fa
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue