mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
56b24d3d4f
* move Help and Synopsis to bottom * make help and synopsis constants * make sure help output is formatted
13 lines
179 B
Go
13 lines
179 B
Go
package operator
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestOperatorCommand_noTabs(t *testing.T) {
|
|
if strings.ContainsRune(New().Help(), '\t') {
|
|
t.Fatal("help has tabs")
|
|
}
|
|
}
|