如何使Spork加载语言环境和工厂?

时间:2011-07-23 17:56:33

标签: ruby-on-rails rspec automated-tests spork guard

所以在Rails 3.0.9应用程序上,我在1.9.2上使用Spork / Guard / RSpec / FactoryGirl。

我想知道如何让Spork / Guard自动更新我的工厂和区域设置。

2 个答案:

答案 0 :(得分:6)

在你的Gemfile中

gem "factory_girl_rails", :require => false

然后在spec / spec_helper.rb

Spork.each_run do
  require 'factory_girl_rails'
end

那应该有用

答案 1 :(得分:6)

对于区域设置,只需将I18n.reload!放入each_run中Spork的spec/spec_helper.rb部分即可。 它应该工作。