#556 broke the api for users who were using the ActionFunc

This commit is contained in:
Kasey Klipsch
2016-11-21 09:47:23 -06:00
parent b6061c464d
commit 8fa549846e
2 changed files with 22 additions and 1 deletions

View File

@@ -1664,3 +1664,22 @@ func TestShellCompletionForIncompleteFlags(t *testing.T) {
t.Errorf("app should not return an error: %s", err)
}
}
func TestHandleActionActuallyWorksWithActions(t *testing.T) {
var f ActionFunc
called := false
f = func(c *Context) error {
called = true
return nil
}
err := HandleAction(f, nil)
if err != nil {
t.Errorf("Should not have errored: %v", err)
}
if !called {
t.Errorf("Function was not called")
}
}