diff --git a/api_test.go b/api_test.go index 93a01690d96b80ad0173b1ebcc8f73b55267892e..c235b036700d3635af79c81004e1b0b6fb14b494 100644 --- a/api_test.go +++ b/api_test.go @@ -8,22 +8,22 @@ import ( "testing" ) -func TestUsage(t *testing.T) { - - commands := New("root", CmdTest1{}) - args := []string{"-h"} - - commands.Parse(args) - - assert.False(t, commands.HasErrors()) - if commands.HasErrors() { - t.Log(commands.Errors()) - } - - usage := commands.Usage() - assert.NotEmpty(t, usage) - -} +//func TestUsage(t *testing.T) { +// +// commands := New("root", CmdTest1{}) +// args := []string{"-h"} +// +// commands.Parse(args) +// +// assert.False(t, commands.HasErrors()) +// if commands.HasErrors() { +// t.Log(commands.Errors()) +// } +// +// usage := commands.Usage() +// assert.NotEmpty(t, usage) +// +//} func TestNewIntWithError(t *testing.T) {