Remove unused file for tests

This commit is contained in:
Seth Vargo 2017-09-04 23:55:32 -04:00
parent 0cfb558f0b
commit fc58acbd7e
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF

View File

@ -1,14 +0,0 @@
package command
import (
"strings"
"testing"
"github.com/mitchellh/cli"
)
func assertNoTabs(tb testing.TB, c cli.Command) {
if strings.ContainsRune(c.Help(), '\t') {
tb.Errorf("%#v help output contains tabs", c)
}
}