Я следую этому примеру здесь: http://erikonrails.snowedin.net/?p=230
Я добавил:
lib/delayed_job_spec_helper.rb
Тогда в моем rspec у меня есть:
describe Thingy do
include DelayedJobSpecHelper
it "should have been worked on if I do something that queues jobs" do
thing = Thingy.new
thing.method_that_queues_jobs
work_off
thing.should be_worked_on
end
end
Проблема в том, что я получаю ошибку:
/Library/Ruby/Gems/1.8/gems/aws-s3-0.6.2/lib/aws/s3/extensions.rb:206:in `const_missing': uninitialized constant DelayedJobSpecHelper (NameError)
Идеи? спасибо