mirror of
https://github.com/redis/go-redis.git
synced 2025-06-14 01:21:30 +03:00
Cleanup tests
This commit is contained in:
@ -114,13 +114,12 @@ var _ = Describe("Commands", func() {
|
||||
|
||||
Expect(get.Err()).NotTo(HaveOccurred())
|
||||
Expect(get.Val()).To(Equal("theclientname"))
|
||||
|
||||
})
|
||||
|
||||
It("should ConfigGet", func() {
|
||||
r := client.ConfigGet("*")
|
||||
Expect(r.Err()).NotTo(HaveOccurred())
|
||||
Expect(r.Val()).NotTo(BeEmpty())
|
||||
val, err := client.ConfigGet("*").Result()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
Expect(val).NotTo(BeEmpty())
|
||||
})
|
||||
|
||||
It("should ConfigResetStat", func() {
|
||||
|
Reference in New Issue
Block a user