Welcome to mirror list, hosted at ThFree Co, Russian Federation.

carrierwave.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b376822d530ed0bbb315b70633d21d0170e2051a (plain)
1
2
3
4
5
6
7
CarrierWave.root = File.expand_path('tmp/tests/public', Rails.root)

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