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

14 lines
193 B
Go

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