File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 16
16
(assert-nil (kv-cmd-rpush " tasks" ) " [RPUSH] Should return NIL if only 1 key is provided" )
17
17
(assert-nil (kv-cmd-rpush " tasks" (kv-name " tasks" )) " [RPUSH] Should return NIL if no elements are provided" )
18
18
(assert-nil (kv-cmd-rpush " tasks" (kv-name " tasks" ) " element 1" ) " [RPUSH] Should return NIL if the elements aren't a list" )
19
- (kv-cmd-del " %stats%/keys" )
19
+ (off *KV/ %stats%/keys)
20
20
(assert-equal 5 (kv-cmd-rpush " tasks" (kv-name " tasks" ) ' (" task1" " task2" " task3" " task4" " task5" )) " [RPUSH] Should return the length of the new list" )
21
21
(assert-equal 7 (kv-cmd-rpush " tasks" (kv-name " tasks" ) ' (" task6" " task7" )) " [RPUSH] Should return the extended length of the list" )
22
22
(assert-equal " task1" (kv-cmd-lindex (kv-name " tasks" ) 0 ) " [LINDEX] Should return the key at index 0" )
You can’t perform that action at this time.
0 commit comments