I'm trying to write a test for a model with a picture, using paperclip. I'm using the test framework default, no shoulda or rspec. In this context, how should I test it? Should I really upload a file? How should I add a file to the fixture?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Adding file to a model is dead simple. For example:
In that case you should put the file into your I usually make a little helper in my test_helper.rb
Then
If you use something like Factory Girl instead of fixtures this becomes even easier. |
|||||||
|
|
This is in Rspec, but can be easily switched over
Since Paperclip is pretty well tested, I usually don't focus too much on the act of "uploading", unless i'm doing something out of the ordinary. But I will try to focus more on ensuring that the configurations of the attachment, in relation to the model it belongs, meet my needs.
All the goodies can be found in |
|||