У меня была такая же проблема, поэтому я установил ее в своем блоке each_run:
Spork.each_run do
# This code will be run each time you run your specs.
ActiveSupport::Dependencies.clear
ActiveRecord::Base.instantiate_observers
FactoryGirl.reload
Dir[File.join(File.dirname(__FILE__), '..', 'app', 'helpers', '*.rb')].each do |file|
require file
end
end
Кроме того, не забудьте об этом в вашем config / средах / test.rb:
config.cache_classes = !(ENV['DRB'] == 'true')