1
0
mirror of https://github.com/gizak/termui.git synced 2025-04-24 13:48:50 +08:00
termui/par_test.go

25 lines
534 B
Go
Raw Normal View History

2017-01-14 01:07:43 -05:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
2016-01-26 20:45:18 -05:00
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
package termui
import "testing"
func TestPar_NoBorderBackground(t *testing.T) {
par := NewPar("a")
2015-10-22 11:17:20 -04:00
par.Border = false
par.Bg = ColorBlue
par.TextBgColor = ColorBlue
par.Width = 2
par.Height = 2
pts := par.Buffer()
2015-10-22 11:17:20 -04:00
for _, p := range pts.CellMap {
t.Log(p)
2015-10-22 11:17:20 -04:00
if p.Bg != par.Bg {
t.Errorf("expected color to be %v but got %v", par.Bg, p.Bg)
}
}
}