23 lines
408 B
Go
23 lines
408 B
Go
package terminal
|
|
|
|
import "testing"
|
|
|
|
func TestCode(t *testing.T) {
|
|
input := "H"
|
|
|
|
got := Code(input)
|
|
want := EscPrefix + input
|
|
|
|
if got != want {
|
|
t.Errorf("Failed to prefix %q with the escape prefix: %q", input, EscPrefix)
|
|
}
|
|
}
|
|
|
|
func TestMoveCursor(t *testing.T) {
|
|
got := MoveCursor(0, 0)
|
|
want := Code("%d;%dH", 1, 1)
|
|
|
|
if got != want {
|
|
t.Errorf("Failed to create escape sequence to move cursor")
|
|
}
|
|
} |