0
我在这里下面这个例子:http://erikonrails.snowedin.net/?p=230rspec - 添加辅助模块?
我说:
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)
想法?谢谢