I've been looking into rspec-ing delayed_jobs lately, and I found a few
resources on testing jobs that execute right away. But I couldn't find any
that delt with testing a job that is delayed a week in the future, for
example.
Does anyone have any good resources on this? I'd appreciate it.
Thanks
"Integration testing" is also known as "full-stack testing." Basically,
you're not testing isolated parts of the system, but the system as a whole.
Cucumber is integration testing. rspec with 'integrate_views' is integration
testing.
___
rspec-users maili
One of the things that you learn after testing for a while is "what to
test." You don't need to test Paperclip's ability to put files to S3; that's
what Paperclip's internal tests are for. So what I do is this:
http://gist.github.com/479647
When I'm developing locally or testing, I just write fil