Hello!
I am trying to use FactoryGirl instead of default fixtures in edge Rails 3. I used
http://github.com/pjb3/rails3-generators
and tried to do the replacement as adviced in
http://paulbarry.com/articles/2010/01/13/customizing-generators-in-rails-3
this way (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
looks good, doesn't it? But it does not work ... any ideas?