Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JunNishimura committed Sep 1, 2023
1 parent 02094ac commit 33524eb
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1876,7 +1876,9 @@ func TestRemoveSingleGroup(t *testing.T) {
rootCmd.SetHelpCommandGroupID("help")
rootCmd.SetCompletionCommandGroupID("comp")

rootCmd.RemoveGroup("group")
if err := rootCmd.RemoveGroup("group"); err != nil {
t.Errorf("Unexpected error: %v", err)
}

output, err := executeCommand(rootCmd, "--help")
if err != nil {
Expand All @@ -1895,7 +1897,9 @@ func TestRemoveHelpCommandGroup(t *testing.T) {
rootCmd.AddCommand(&Command{Use: "child", Short: "c", GroupID: "group", Run: emptyRun})
rootCmd.SetHelpCommandGroupID("group")

rootCmd.RemoveGroup("group")
if err := rootCmd.RemoveGroup("group"); err != nil {
t.Errorf("Unexpected error: %v", err)
}

output, err := executeCommand(rootCmd, "--help")
if err != nil {
Expand All @@ -1917,7 +1921,9 @@ func TestRemoveCompletionCommandGroup(t *testing.T) {
rootCmd.SetHelpCommandGroupID("help")
rootCmd.SetCompletionCommandGroupID("group")

rootCmd.RemoveGroup("group")
if err := rootCmd.RemoveGroup("group"); err != nil {
t.Errorf("Unexpected error: %v", err)
}

output, err := executeCommand(rootCmd, "--help")
if err != nil {
Expand Down Expand Up @@ -1946,7 +1952,9 @@ func TestRemoveMultipleGroups(t *testing.T) {
rootCmd.SetHelpCommandGroupID("help")
rootCmd.SetCompletionCommandGroupID("comp")

rootCmd.RemoveGroup("group1", "group2")
if err := rootCmd.RemoveGroup("group1", "group2"); err != nil {
t.Errorf("Unexpected error: %v", err)
}

output, err := executeCommand(rootCmd, "--help")
if err != nil {
Expand Down

0 comments on commit 33524eb

Please sign in to comment.