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
Guillaume Hain 65073e360a Add support for Nobrainer (RethinkDB)
* Add persistence for NoBrainer
* Add tests for NoBrainer
* Show the ORM version when running the tests
* Add a Dockerfile and a docker-compose.yml file allowing to run from anywhere very easily the test suite with `docker-compose run --rm aasm\'
* Moves the Mongoid database name definition in the gem loader (avoiding code repetition)
* Update the CHANGELOG.md and the README.md files
* Add Rails generator for NoBrainer
2018-02-13 12:49:27 +05:30

18 lines
528 B
Ruby

# encoding: utf-8
begin
require 'redis-objects'
require 'redis/objects/version'
puts "redis-objects gem found, running Redis specs \e[32m#{'✔'}\e[0m"
Redis.current = Redis.new(host: (ENV['REDIS_HOST'] || '127.0.0.1'),
port: (ENV['REDIS_PORT'] || 6379))
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