7 lines
153 B
Ruby
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
|