2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 14:20:39 +00:00
2018-06-14 09:42:18 -07:00

14 lines
186 B
Go

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