1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
aasm/spec/spec_helpers/redis.rb

19 lines
528 B
Ruby
Raw Normal View History

2017-02-10 06:39:28 -05:00
# encoding: utf-8
begin
require 'redis-objects'
require 'redis/objects/version'
puts "redis-objects gem found, running Redis specs \e[32m#{'✔'}\e[0m"
2017-07-11 06:42:49 -04:00
Redis.current = Redis.new(host: (ENV['REDIS_HOST'] || '127.0.0.1'),
port: (ENV['REDIS_PORT'] || 6379))
2017-07-11 06:42:49 -04:00
RSpec.configure do |c|
c.before(:each) do
Redis.current.keys('redis_*').each { |k| Redis.current.del k }
end
end
rescue LoadError
puts "redis-objects gem not found, not running Redis specs \e[31m#{'✖'}\e[0m"
end