2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-17 17:22:17 +00:00
2017-10-18 00:08:45 +02:00

14 lines
191 B
Go

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