resque_spec
resque_spec copied to clipboard
RSpec matcher for Resque
Resque queue [peek](https://github.com/defunkt/resque/blob/master/lib/resque.rb) function that relies on [slice](https://github.com/defunkt/resque/blob/master/lib/resque/queue.rb) function returns either a single element or an array whereas ResqueSpec [peek](https://github.com/leshill/resque_spec/blob/master/lib/resque_spec.rb) function returns always an array because it relies on Array...
Resque encodes and decodes the Job arguments. This means that simply passing the arguments along in ResqueSpec is not good enough. Verify that all paths to user-code (for example when...
Very weird problem ... I have something working in production mode (manually testing exactly the same steps) and not working in my features, because Resque basically doesn't enqueue jobs (Resque.size...
There are times when we need Redis to actually be run via Redis in order to trigger other events/pubsub/node (as an example). ResqueSpec is great for most cases, but it...