bubbletea/nil_renderer_test.go

25 lines
418 B
Go

package tea
import "testing"
func TestNilRenderer(t *testing.T) {
r := nilRenderer{}
r.start()
r.stop()
r.kill()
r.write("a")
r.repaint()
r.enterAltScreen()
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()
}