func TestCommandsHaveHelp(t *testing.T) {
    for _, c := range allCommands(RootCmd) {
        t.Run(fmt.Sprintf("test long description of command %s", c.Name()), func(t *testing.T) {
            assert.NotEmpty(t, c.Long)
        })