mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 06:44:41 +00:00
17 lines
252 B
Go
17 lines
252 B
Go
|
package upstreams
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mitchellh/cli"
|
||
|
)
|
||
|
|
||
|
func TestTroubleshootUpstreamsCommand_noTabs(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') {
|
||
|
t.Fatal("help has tabs")
|
||
|
}
|
||
|
}
|