What's the best way to write Resque-related specs in RSpec?

Hakan Ensari picture Hakan Ensari · Aug 13, 2010 · Viewed 7.6k times · Source

What's the best way to write Resque-related specs in RSpec without stubbing the former?

We currently use the following helper:

@dir = File.dirname(File.expand_path(__FILE__))

def start_redis
  `redis-server #{@dir}/redis-test.conf`
  Resque.redis = "localhost:9736"
end

def stop_redis
  `rm -f #{@dir}/dump.rdb`
  pid = `ps -A -o pid,command | grep [r]edis-test`.split(" ")[0]
  Process.kill("KILL", pid.to_i)
end

Rspec.configure do |config|
  config.before(:suite) do
    start_redis
  end

  config.after(:suite) do
    stop_redis
  end

  config.before(:each) do
    Resque.redis.flushall
  end
end

Heavily borrowing from Resque's own test helper, this works fine but spews out an annoying zsh: killed rake when the entire spec suite is run through rake.

Answer

Dia Kharrat picture Dia Kharrat · Jul 22, 2011

Here's resque's recommendation for how best to run Redis processes in your specs:

https://github.com/resque/resque/wiki/RSpec-and-Resque