add subcommand

main
Lynn Cyrin 5 years ago
parent cc1cf8c459
commit 300288670f
No known key found for this signature in database
GPG Key ID: EE9CCB427DFEC897

@ -962,6 +962,18 @@ func TestRequiredFlagAppRunBehavior(t *testing.T) {
// setup - app
app := NewApp()
app.Flags = test.flags
app.Commands = []Command{
Command{
Name: "command",
Flags: test.flags,
Subcommands: []Command{
Command{
Name: "subcommand",
Flags: test.flags,
},
},
},
}
// logic under test
err := app.Run(test.appRunInput)

Loading…
Cancel
Save