README.md in qu-0.1.3 vs README.md in qu-0.1.4

- old
+ new

@@ -119,9 +119,17 @@ c.connection = Redis::Namespace.new('myapp:qu', :redis => Redis.connect) c.logger = Logger.new('log/qu.log') end ``` +## Tests + +If you prefer to have jobs processed immediatly in your tests, there is an `Immediate` backend that will perform the job instead of enqueuing it. In your test helper, require qu-immediate: + +``` ruby +require 'qu-immediate' +``` + ## Why another queuing library? Resque and delayed_job are both great, but both of them have shortcomings that can be frustrating in production applications. delayed_job was a brilliantly simple pioneer in the world of database-backed queues. While most asynchronous queuing systems were tending toward overly complex, it made use of your existing database and just worked. But there are a few flaws: