static-file-server/cli/help/help_test.go

10 lines
142 B
Go
Raw Normal View History

package help
import "testing"
func TestRun(t *testing.T) {
if err := Run(); nil != err {
t.Errorf("While running help got %v", err)
}
}