consul/command/connect/envoy/pipe-bootstrap/connect_envoy_pipe-bootstrap_test.go
Daniel Nephin 07a1b7d081 Merge pull request #10324 from hashicorp/dnephin/fix-envoy-bootstrap-exec
envoy: fix deadlock when input is larger than named pipe buffer size
2021-06-01 17:03:26 +00:00

15 lines
245 B
Go

package pipebootstrap
import (
"strings"
"testing"
"github.com/mitchellh/cli"
)
func TestConnectEnvoyPipeBootstrapCommand_noTabs(t *testing.T) {
if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') {
t.Fatal("help has tabs")
}
}