如何更换Rails 3上的夹具发生器?

时间:2010-01-23 14:02:39

标签: ruby-on-rails

我正在尝试使用FactoryGirl而不是边缘Rails 3中的默认装置。我使用

http://github.com/pjb3/rails3-generators

并尝试按照

中的建议进行更换

http://paulbarry.com/articles/2010/01/13/customizing-generators-in-rails-3

这样(config / application.rb)

config.generators do |g|
  g.orm             :active_record
  g.template_engine :erb
  g.test_framework  :test_unit, :fixture => true
  g.fixture_replacement "factory_girl", :dir => "test/factories"
end
看起来不错,不是吗?但它不起作用......任何想法?

2 个答案:

答案 0 :(得分:23)

似乎正确的方法(至少现在:))略有不同:

config.generators do |g|
  g.orm             :active_record
  g.template_engine :erb
  g.test_framework  :test_unit, :fixture_replacement => :factory_girl
end

答案 1 :(得分:7)

对于Rails 3.1.rc1,你需要在你的Gemfile中使用“gem”rails3-generators'“,以便factory_girl夹具替换工作。