Files
old-holivud2/spec/support/storage.rb
2020-05-31 22:38:19 +02:00

7 lines
153 B
Ruby

# Clean up files stored during testing
RSpec.configure do |config|
config.after :suite do
FileUtils.rm_rf Rails.root.join("tmp/storage")
end
end