Posted almost 9 years ago. Visible to the public.
Avoid png file uploads with RSpec + Paperclip + Imagemagick
File uploads with .png are +10 times slower than using .jpeg or .gif.
Copy# Bad post :create, { :property_id => property.id, :photo => { :image => File.open("#{Rails.root}/public/images/foo.png") } } # Good post :create, { :property_id => property.id, :photo => { :image => File.open("#{Rails.root}/public/images/foo.jpeg") } }