mirror of
https://github.com/gizak/termui.git
synced 2025-04-27 13:48:51 +08:00
17 lines
283 B
Go
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")
|
|
}
|
|
|
|
}
|