cache.rb 182 B

12345678
  1. RSpec.configure do |config|
  2. config.before(:each) do
  3. # clear the cache otherwise it won't
  4. # be able to recognize the rollbacks
  5. # done by RSpec
  6. Cache.clear
  7. end
  8. end