add several subcommand unittests

This commit is contained in:
Alex Flint 2019-04-30 13:53:14 -07:00
parent 39decf197f
commit 15b9bcfbb4
1 changed files with 8 additions and 0 deletions

View File

@ -160,3 +160,11 @@ func TestSubcommandsWithOptions(t *testing.T) {
assert.Equal(t, args.Get.Name, "test")
}
}
func TestNestedSubcommands(t *testing.T) {
// tree of subcommands
}
func TestSubcommandsWithPositionals(t *testing.T) {
// subcommands with positional arguments
}