mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-02 19:57:42 +08:00
30 lines
825 B
Go
30 lines
825 B
Go
// Copyright 2012-2015 Apcera Inc. All rights reserved.
|
|
|
|
package termtables
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestBasicRowRender(t *testing.T) {
|
|
row := CreateRow([]interface{}{"foo", "bar"})
|
|
style := &renderStyle{TableStyle: TableStyle{BorderX: "-", BorderY: "|", BorderI: "+",
|
|
PaddingLeft: 1, PaddingRight: 1}, cellWidths: map[int]int{0: 3, 1: 3}}
|
|
|
|
output := row.Render(style)
|
|
if output != "| foo | bar |" {
|
|
t.Fatal("Unexpected output:", output)
|
|
}
|
|
}
|
|
|
|
func TestRowRenderWidthBasedPadding(t *testing.T) {
|
|
row := CreateRow([]interface{}{"foo", "bar"})
|
|
style := &renderStyle{TableStyle: TableStyle{BorderX: "-", BorderY: "|", BorderI: "+",
|
|
PaddingLeft: 1, PaddingRight: 1}, cellWidths: map[int]int{0: 3, 1: 5}}
|
|
|
|
output := row.Render(style)
|
|
if output != "| foo | bar |" {
|
|
t.Fatal("Unexpected output:", output)
|
|
}
|
|
}
|