2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-16 15:47:21 +00:00

14 lines
188 B
Go
Raw Normal View History

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