39 lines
736 B
Go
39 lines
736 B
Go
package cli_test
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func Test_ShowAppHelp_NoAuthor(t *testing.T) {
|
|
output := new(bytes.Buffer)
|
|
app := cli.NewApp()
|
|
app.Writer = output
|
|
|
|
c := cli.NewContext(app, nil, nil)
|
|
|
|
cli.ShowAppHelp(c)
|
|
|
|
if bytes.Index(output.Bytes(), []byte("AUTHOR(S):")) != -1 {
|
|
t.Errorf("expected\n%snot to include %s", output.String(), "AUTHOR(S):")
|
|
}
|
|
}
|
|
|
|
func Test_ShowAppHelp_NoVersion(t *testing.T) {
|
|
output := new(bytes.Buffer)
|
|
app := cli.NewApp()
|
|
app.Writer = output
|
|
|
|
app.Version = ""
|
|
|
|
c := cli.NewContext(app, nil, nil)
|
|
|
|
cli.ShowAppHelp(c)
|
|
|
|
if bytes.Index(output.Bytes(), []byte("VERSION:")) != -1 {
|
|
t.Errorf("expected\n%snot to include %s", output.String(), "VERSION:")
|
|
}
|
|
}
|