I'm using minitest-rails (https://github.com/blowmage/minitest-rails) and it works quite well. One problem though is that the generators are not working. Or rather, it seems to always invoke "test_unit" instead!
This is what my "test/minitest_helper.rb" looks like: https://gist.github.com/3496814 (Notice that I override test unit there)
In "config/application.rb" I have this:
# require "rails/test_unit/railtie" ## Test Unit is not required!
Also this:
## application.rb
config.generators do |g|
g.test_framework :mini_test, :spec => true, :fixture => false
end
## Gemfile
group :test, :development do
gem 'minitest-rails', git: "git://github.com/blowmage/minitest-rails.git"
gem 'minitest-rails-capybara'
gem 'factory_girl_rails'
gem 'turn'
end
Still, when generating a model for example, I get this: (The --spec doesn't actually matter. It generates the same stuff anyway)
rails g model Horse --spec
invoke active_record
create db/migrate/20120828095404_create_horses.rb
create app/models/horse.rb
invoke test_unit ### Invoking test_unit??!
create test/unit/horse_test.rb
invoke factory_girl
create test/factories/horses.rb
If I just create the files manually minitest is working like a charm.
Is there anything else I need to do to make the generators work properly?
Using Rails 3.2.7 at the moment.