@@ -3086,6 +3086,14 @@ var _ = Describe("Commands", func() {
3086
3086
})
3087
3087
})
3088
3088
3089
+ It ("FunctionKill" , func () {
3090
+ operationStringCmd (clientMock , func () * ExpectedString {
3091
+ return clientMock .ExpectFunctionKill ()
3092
+ }, func () * redis.StringCmd {
3093
+ return client .FunctionKill (ctx )
3094
+ })
3095
+ })
3096
+
3089
3097
It ("FunctionDump" , func () {
3090
3098
operationStringCmd (clientMock , func () * ExpectedString {
3091
3099
return clientMock .ExpectFunctionDump ()
@@ -3102,6 +3110,22 @@ var _ = Describe("Commands", func() {
3102
3110
})
3103
3111
})
3104
3112
3113
+ It ("FCall" , func () {
3114
+ operationCmdCmd (clientMock , func () * ExpectedCmd {
3115
+ return clientMock .ExpectFCall ("func-1" , []string {"key1" , "key2" }, "arg1" , "arg2" )
3116
+ }, func () * redis.Cmd {
3117
+ return client .FCall (ctx , "func-1" , []string {"key1" , "key2" }, "arg1" , "arg2" )
3118
+ })
3119
+ })
3120
+
3121
+ It ("FCallRo" , func () {
3122
+ operationCmdCmd (clientMock , func () * ExpectedCmd {
3123
+ return clientMock .ExpectFCallRo ("func-1" , []string {"key1" , "key2" }, "arg1" , "arg2" )
3124
+ }, func () * redis.Cmd {
3125
+ return client .FCallRo (ctx , "func-1" , []string {"key1" , "key2" }, "arg1" , "arg2" )
3126
+ })
3127
+ })
3128
+
3105
3129
// ------------------------------------------------------------------
3106
3130
3107
3131
It ("ACLDryRun" , func () {
0 commit comments