Sha256: 67931c97b8700e2159054cbad47acd58f57c329c5d5f2f245d0d07d434eb0691

Contents?: true

Size: 332 Bytes

Versions: 3

Compression:

Stored size: 332 Bytes

Contents

require "rspec-redis_helper"

RSpec.configure do |spec|
  spec.include RSpec::RedisHelper, redis: true

  # clean the Redis database around each run
  # @see https://www.relishapp.com/rspec/rspec-core/docs/hooks/around-hooks
  spec.around(:each, redis: true) do |example|
    with_clean_redis do
      example.run
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sidekiq-statsd-2.1.0 spec/support/sidekiq.rb
sidekiq-statsd-2.0.1 spec/support/sidekiq.rb
sidekiq-statsd-1.0.0 spec/support/sidekiq.rb