mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
16 lines
239 B
Go
16 lines
239 B
Go
package version
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestVersionCommand_noTabs(t *testing.T) {
|
|
t.Parallel()
|
|
if strings.ContainsRune(New(cli.NewMockUi(), "").Help(), '\t') {
|
|
t.Fatal("help has tabs")
|
|
}
|
|
}
|