Add Eval test.

This commit is contained in:
Vladimir Mihailenco 2017-01-03 12:21:22 +02:00
parent 8fcba2ea87
commit 7eeb681076
1 changed files with 14 additions and 0 deletions

View File

@ -2852,6 +2852,20 @@ var _ = Describe("Commands", func() {
})
Describe("Eval", func() {
It("returns keys and values", func() {
vals, err := client.Eval(
"return {KEYS[1],ARGV[1]}",
[]string{"key"},
"hello",
).Result()
Expect(err).NotTo(HaveOccurred())
Expect(vals).To(Equal([]interface{}{"key", "hello"}))
})
})
})
type numberStruct struct {