consul/command/connect/envoy/envoy_test.go

14 lines
192 B
Go
Raw Normal View History

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