summaryrefslogtreecommitdiff
path: root/spec/support/carrierwave.rb
blob: aa89afd8fb36d53e6b69a2d76cad8b71b25c59cc (plain)
1
2
3
4
5
6
7
CarrierWave.root = 'tmp/tests/uploads'

RSpec.configure do |config|
  config.after(:suite) do
    FileUtils.rm_rf('tmp/tests/uploads')
  end
end