RSpec.configure do |config| config.before(:suite) do PortalConnectors.configure do |config| config.redis = Redis.new(url: "redis://localhost:6379/0") end PortalConnectors.redis.flushall end config.after(:each) do PortalConnectors.redis.flushall end end