2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-24 04:31:12 +00:00

14 lines
191 B
Go
Raw Normal View History

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