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: 72af2c70324ca10db0d7acf5a568d5299ea7155d (plain)
1
2
3
4
5
6
7
CarrierWave.root = 'tmp/tests/uploads'

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