What is the best way for testing file uploads for Rails Applications? I'm currently using Paperclip for uploads, but I guess that doesn't make much difference.
Should I even create tests for file upload, or is it better to just stub it all out and don't create any real upload tests?
Say I have some tests just for the upload. Should I also cover cropping in my tests?
What would be the best way to test image cropping?