open-consul/command/kv/kv_test.go

13 lines
168 B
Go

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