mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
d54a5ef8d8
Package level parallelization is sufficient.
13 lines
180 B
Go
13 lines
180 B
Go
package operator
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestOperatorCommand_noTabs(t *testing.T) {
|
|
if strings.ContainsRune(New().Help(), '\t') {
|
|
t.Fatal("usage has tabs")
|
|
}
|
|
}
|