2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-22 10:28:31 +00:00
2017-10-18 00:08:45 +02:00

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")
}
}