Add test for inclusion of 'AUTHORS' in App help
This commit is contained in:
parent
7c041f5811
commit
96ad929784
22
help_test.go
Normal file
22
help_test.go
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package cli_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/codegangsta/cli"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestShowAppHelp(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):")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user