Sha256: 8acc295ed957471e6df1cdbcec9380049f97d5fc2a8796e51df53191309f8e47

Contents?: true

Size: 713 Bytes

Versions: 4

Compression:

Stored size: 713 Bytes

Contents

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

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
  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!

Rworkflow.config.sidekiq_perform_async = false

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

4 entries across 4 versions & 1 rubygems

Version Path
rworkflow-0.7.3 test/test_helper.rb
rworkflow-0.7.2 test/test_helper.rb
rworkflow-0.7.1 test/test_helper.rb
rworkflow-0.7.0 test/test_helper.rb