Sha256: 76784b3e34399d87e0c9ac50eabf9c06c24ce36a5f6a37aa22f1f6440979dc10

Contents?: true

Size: 487 Bytes

Versions: 5

Compression:

Stored size: 487 Bytes

Contents

require 'cache/object'
require 'rspec/collection_matchers'
require 'rspec/its'
RSpec.configure do |config|

  config.before(:each) do
    Cache::Object.instance_variable_set(:@configuration, nil)
    Cache::Object.instance_variable_set(:@adapter, nil)
  end

  config.after(:each) do
    Cache::Object.instance_variable_set(:@configuration, nil)
    Cache::Object.instance_variable_set(:@adapter, nil)
  end

  config.raise_errors_for_deprecations!
  config.disable_monkey_patching!
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cache-object-0.2.0 spec/spec_helper.rb
cache-object-0.1.0 spec/spec_helper.rb
cache-object-0.0.7 spec/spec_helper.rb
cache-object-0.0.6 spec/spec_helper.rb
cache-object-0.0.5 spec/spec_helper.rb