piken/format/formatter_test.go
Daniele Tricoli c37442b58c Add copyright note and license information
So anybody can just copy one of the files without worry to search for
license file.
2015-12-12 04:24:49 +01:00

29 lines
639 B
Go

// Copyright © 2015 Daniele Tricoli <eriol@mornie.org>.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package format // import "eriol.xyz/piken/format"
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBaseFormatterFields(t *testing.T) {
bf := baseFormatter{}
fields := []string{"f1", "f2"}
bf.SetFields(fields)
assert.Equal(t, bf.Fields(), fields)
}
func TestBaseFormatterShowGlyph(t *testing.T) {
bf := baseFormatter{}
assert.Equal(t, bf.ShowGlyph(), false)
bf.SetShowGlyph(true)
assert.Equal(t, bf.ShowGlyph(), true)
}