2019-07-25 01:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-28 13:33:47 -05:00
|
|
|
CarrierWave.root = File.expand_path('tmp/tests/public', Rails.root)
|
2016-03-30 07:57:01 -04:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2018-12-11 01:29:58 -05:00
|
|
|
config.after do
|
2017-02-22 14:25:06 -05:00
|
|
|
FileUtils.rm_rf(CarrierWave.root)
|
2016-03-30 07:57:01 -04:00
|
|
|
end
|
|
|
|
end
|