open-consul/command/util_test.go

15 lines
224 B
Go

package command
import (
"strings"
"testing"
"github.com/mitchellh/cli"
)
func assertNoTabs(t *testing.T, c cli.Command) {
if strings.ContainsRune(c.Help(), '\t') {
t.Errorf("%#v help output contains tabs", c)
}
}