ruby-on-rails – 如何更换Rails 3上的夹具生成器?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何更换Rails 3上的夹具生成器?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用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

看起来不错,不是吗?但它没有工作…任何想法?

解决方法

看来,正确的方法(至少现在:))有些不同:
config.generators do |g|
  g.orm             :active_record
  g.template_engine :erb
  g.test_framework  :test_unit,:fixture_replacement => :factory_girl
end
原文链接:https://www.f2er.com/ruby/265909.html

猜你在找的Ruby相关文章