(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestHeadersFirstRow(t *testing.T) { |
| 44 | tabulate := Create([][]string{STRING_ARRAY, STRING_ARRAY}) |
| 45 | assert.Equal(t, tabulate.Render("grid"), readTable("_tests/test_first_row")) |
| 46 | } |
| 47 | |
| 48 | func TestEmptyString(t *testing.T) { |
| 49 | tabulate := Create([][]string{STRING_ARRAY, EMPTY_ARRAY}) |