From 15b9bcfbb4af9e491c1aeab36d71f60f60c6e7ea Mon Sep 17 00:00:00 2001 From: Alex Flint Date: Tue, 30 Apr 2019 13:53:14 -0700 Subject: [PATCH] add several subcommand unittests --- subcommand_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/subcommand_test.go b/subcommand_test.go index 6df3147..25689a4 100644 --- a/subcommand_test.go +++ b/subcommand_test.go @@ -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 +}