Revert "Revert "remove uploaded test images after running the specs/cucumber"" -- using == now instead of =

This reverts commit 7969b52035.
This commit is contained in:
danielgrippi 2011-08-18 11:13:00 -07:00
parent 0473037d1b
commit b11bd23da2
4 changed files with 18 additions and 2 deletions

View file

@ -14,7 +14,10 @@ class ProcessedImage < CarrierWave::Uploader::Base
end
def filename
model.random_string + File.extname(@filename) if @filename
fn = model.random_string
fn += "-test" if Rails.env == 'test'
fn += File.extname(@filename) if @filename
fn
end
version :thumb_small do

View file

@ -14,7 +14,10 @@ class UnprocessedImage < CarrierWave::Uploader::Base
end
def filename
model.random_string + File.extname(@filename) if @filename
fn = model.random_string
fn += "-test" if Rails.env == 'test'
fn += File.extname(@filename) if @filename
fn
end
version :thumb_small

View file

@ -52,6 +52,13 @@ Before do
Devise.mailer.deliveries = []
end
After do
# Rollback any images created during the features.
`rm -rf #{Rails.root}/tmp/uploads/*`
`rm -rf #{Rails.root}/public/uploads/images/*-test.png`
`rm -rf #{Rails.root}/public/uploads/tmp/`
end
silence_warnings do
SERVICES['facebook'] = {'app_id' => :fake, 'app_secret' => 'sdoigjosdfijg'}
AppConfig[:configured_services] << 'facebook'

View file

@ -41,7 +41,10 @@ RSpec.configure do |config|
end
config.after(:all) do
# Rollback any images created during the specs
`rm -rf #{Rails.root}/tmp/uploads/*`
`rm -rf #{Rails.root}/public/uploads/images/*-test.png`
`rm -rf #{Rails.root}/public/uploads/tmp/`
end
end