Sha256: 8c403f2df9532c57724724c30b7dd938699124481c797a60c64b263e02ed6fc4

Contents?: true

Size: 405 Bytes

Versions: 1

Compression:

Stored size: 405 Bytes

Contents

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
  add_filter 'spec'
end

require 'redis-datapump'
require 'mock_redis'

RSpec.configure do |config|
  config.mock_with :rspec
  config.order = 'random'
  config.filter_run_excluding skip: true
  config.before(:each) do
     Redis.stub(:new) { raise 'Call to real redis in tests' }
   end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redis-datapump-0.1.0.alpha1 spec/spec_helper.rb