Sha256: 64a02df434a2e15d2ff4b28800edfca4cb8fe7af3da2636f5fdb84caff1edacc

Contents?: true

Size: 659 Bytes

Versions: 3

Compression:

Stored size: 659 Bytes

Contents

# Configure Rails Environment
ENV['RAILS_ENV'] = 'test'

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start

require File.expand_path('../dummy/config/environment.rb', __FILE__)
require 'rails/test_help'

Rails.backtrace_cleaner.remove_silencers!

connection = Redis.new(
  host: 'localhost',
  db: 1,
  port: 6379,
  timeout: 30,
  thread_safe: true
)

RedisRds.configure(
  connection: connection,
  namespace: 'testns'
)

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rworkflow-0.6.3 test/test_helper.rb
rworkflow-0.6.2 test/test_helper.rb
rworkflow-0.6.1 test/test_helper.rb