You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
639 B
28 lines
639 B
// 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) |
|
}
|
|
|