open-consul/command/kv/kv_test.go

14 lines
181 B
Go

package kv
import (
"strings"
"testing"
)
func TestKVCommand_noTabs(t *testing.T) {
t.Parallel()
if strings.ContainsRune(New().Help(), '\t') {
t.Fatal("help has tabs")
}
}