Commit ac55e030 by lanrion

commented to test for ClientStorage

parent b6ecbbd3
...@@ -39,19 +39,20 @@ ENV["APPID"]="wx986f04063d341d04" ...@@ -39,19 +39,20 @@ ENV["APPID"]="wx986f04063d341d04"
ENV["APPSECRET"]="1a941cd88cb4579ba98ec06b6813af03" ENV["APPSECRET"]="1a941cd88cb4579ba98ec06b6813af03"
ENV["OPENID"]="o9k6BuB0kydAcPTc7sPxppB1GQqA" ENV["OPENID"]="o9k6BuB0kydAcPTc7sPxppB1GQqA"
redis = Redis.new(:host => "127.0.0.1",:port => "6379") # Comment to test for ClientStorage
# redis = Redis.new(:host => "127.0.0.1",:port => "6379")
namespace = "weixin_test:weixin_authorize" # namespace = "weixin_test:weixin_authorize"
# cleanup keys in the current namespace when restart server everytime. # # cleanup keys in the current namespace when restart server everytime.
exist_keys = redis.keys("#{namespace}:*") # exist_keys = redis.keys("#{namespace}:*")
exist_keys.each{|key|redis.del(key)} # exist_keys.each{|key|redis.del(key)}
redis_with_ns = Redis::Namespace.new("#{namespace}", :redis => redis) # redis_with_ns = Redis::Namespace.new("#{namespace}", :redis => redis)
WeixinAuthorize.configure do |config| # WeixinAuthorize.configure do |config|
config.redis = redis_with_ns # config.redis = redis_with_ns
end # end
$client = WeixinAuthorize::Client.new(ENV["APPID"], ENV["APPSECRET"]) $client = WeixinAuthorize::Client.new(ENV["APPID"], ENV["APPSECRET"])
RSpec.configure do |config| RSpec.configure do |config|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment