我试图使用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