1
0
mirror of https://github.com/gizak/termui.git synced 2025-04-27 13:48:51 +08:00
termui/style_parser_test.go
2022-11-05 11:52:56 -07:00

17 lines
283 B
Go

package termui
import (
"testing"
)
func TestParseStyles(t *testing.T) {
cells := ParseStyles("test [blue](fg:blue)", NewStyle(ColorWhite))
if cells[0].Style.Fg != 7 {
t.Fatal("normal text fg is wrong")
}
if cells[5].Style.Fg != 4 {
t.Fatal("blue text fg is wrong")
}
}