Se você quiser usar outro framework de teste para rails como rspec e fábricas ao invés de fixtures . Você deve se adaptar da config/application.rb
seguinte forma:
config.generators do |g|
g.test_framework :rspec # Use RSpec as testing framework.
g.fallbacks[:rspec] = :test_unit # Fallback to Test-Unit if RSpec is not available.
g.fixture_replacement :factory_girl # Use FactoryGirl instead of fixtures.
end