summaryrefslogtreecommitdiff
path: root/spec/support/carrierwave.rb
blob: b4b016e408f7fddfa671bc08fe15f6de63a0b84e (plain)
1
2
3
4
5
6
7
CarrierWave.root = File.expand_path('tmp/tests/public', Rails.root)

RSpec.configure do |config|
  config.after(:each) do
    FileUtils.rm_rf(CarrierWave.root)
  end
end