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: 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