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

Handle -1 in DurationCmd

This commit is contained in:
Vladimir Mihailenco
2019-05-31 13:16:10 +03:00
parent 458982a440
commit c208a17dfc
3 changed files with 14 additions and 3 deletions

View File

@ -374,7 +374,11 @@ var _ = Describe("Commands", func() {
ttl = client.TTL("key")
Expect(ttl.Err()).NotTo(HaveOccurred())
Expect(ttl.Val() < 0).To(Equal(true))
Expect(ttl.Val()).To(Equal(time.Duration(-1)))
ttl = client.TTL("nonexistent_key")
Expect(ttl.Err()).NotTo(HaveOccurred())
Expect(ttl.Val()).To(Equal(time.Duration(-2)))
})
It("should ExpireAt", func() {