We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5683097 commit 7166523Copy full SHA for 7166523
t/config.t
@@ -27,12 +27,7 @@ __DATA__
27
--- config
28
location /t {
29
content_by_lua_block {
30
- local rc = require("resty.redis.connector").new()
31
-
32
- local redis = assert(rc:connect(), "rc:connect should return postively")
33
- assert(redis:set("foo", "bar"), "redis:set should return positvely")
34
- assert(redis:get("foo") == "bar", "get(foo) should return bar")
35
- redis:close()
+ local rc = assert(require("resty.redis.connector").new())
36
}
37
38
--- request
0 commit comments