11 lines
192 B
Ruby
11 lines
192 B
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
module RedisTestHelper
|
|
def clear_redis
|
|
Rails.cache.redis.flushall
|
|
end
|
|
end
|
|
|
|
RSpec.configure { |config| config.include RedisTestHelper }
|