1
0
mirror of https://github.com/redis/go-redis.git synced 2025-06-14 01:21:30 +03:00

ClientUnblock + ClientUnblockWithError

This commit is contained in:
Theo
2018-12-14 14:46:15 +00:00
parent c6bf37c653
commit b5aefa2f6a
2 changed files with 16 additions and 7 deletions

View File

@ -129,7 +129,14 @@ var _ = Describe("Commands", func() {
It("should ClientUnblock", func() {
id := client.ClientID().Val()
r, err := client.ClientUnblock(id, true).Result()
r, err := client.ClientUnblock(id).Result()
Expect(err).NotTo(HaveOccurred())
Expect(r).To(Equal(int64(0)))
})
It("should ClientUnblockWithError", func() {
id := client.ClientID().Val()
r, err := client.ClientUnblockWithError(id).Result()
Expect(err).NotTo(HaveOccurred())
Expect(r).To(Equal(int64(0)))
})