termui/helper_test.go
2015-02-03 14:13:51 -05:00

12 lines
147 B
Go

package termui
import "testing"
func TestStr2Rune(t *testing.T) {
s := "你好,世界."
rs := str2runes(s)
if len(rs) != 6 {
t.Error()
}
}