Sha256: 0a736e70d7169396938b19f8824c711858260377acf243d68de1b9e00fc91bf3

Contents?: true

Size: 1.49 KB

Versions: 3

Compression:

Stored size: 1.49 KB

Contents

require 'rubygems'
require 'bundler/setup'
require 'pry'

require 'support/active_record'
require 'sidekiq'
require 'sidekiq/testing/inline'
require 'sidekiq/api'

require 'simplecov'
SimpleCov.start do
  add_filter "/testing/"
end

require 'reactor'
require 'reactor/testing/matchers'

require 'rspec/its'

REDIS_URL = ENV["REDISTOGO_URL"] || ENV["REDIS_URL"] || "redis://localhost:6379/4"

ActionMailer::Base.delivery_method = :test

Sidekiq.configure_server do |config|
  config.redis = { url: REDIS_URL }

  database_url = ENV['DATABASE_URL']
  if database_url
    ENV['DATABASE_URL'] = "#{database_url}?pool=25"
    ActiveRecord::Base.establish_connection
  end
end

Sidekiq.configure_client do |config|
  config.redis = { url: REDIS_URL }
end


RSpec.configure do |config|
  # some (optional) config here

  config.before(:each) do
    Reactor.test_mode!
    Reactor.clear_test_subscribers!
    ActionMailer::Base.deliveries.clear
  end

  # Runs Sidekiq jobs inline by default unless the RSpec metadata :sidekiq is specified,
  # in which case it will use the real Redis-backed Sidekiq queue
  config.before(:each, :sidekiq) do
    Sidekiq.redis{|r| r.flushall }
    Sidekiq::Testing.disable!
  end

  config.after(:each, :sidekiq) do
    Sidekiq::Testing.inline!
  end

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = "random"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reactor-0.15.1 spec/spec_helper.rb
reactor-0.15.0 spec/spec_helper.rb
reactor-0.14.0 spec/spec_helper.rb