test-unit-rails is a Rails adapter for test-unit gem. You can use full test-unit gem features, RR integration and Capybara integration with test-unit-rails.
Rails supports Minitest but doesn't support test-unit.
Add the following codes to your Gemfile:
group :development, :test do
gem 'test-unit-rails'
end
Update bundled gems:
% bundle update
Replace "require 'rails/test_help'"
in your test/test_helper.rb with the following codes:
# require 'rails/test_help'
require 'test/unit/rails/test_help'
Now you can use full test-unit gem features, RR integration and Capybara integration.
LGPLv2.1 or later.
(Kouhei Sutou has a right to change the license including contributed patches.)
- Kouhei Sutou
- Haruka Yoshihara