h1. test-unit-rails "Web site":http://test-unit.rubyforge.org/#test-unit-rails h2. Description test-unit-rails is a Rails adapter for test-unit 2. You can use full test-unit 2 features, "RR":https://rubygems.org/gems/rr integration and "Capybara":https://rubygems.org/gems/capybara integration with test-unit-rails. Rails supports Test::Unit bundled in Ruby 1.8 and MiniTest but doesn't support test-unit 2. Rails with test-unit 2 works but is not fully worked. h2. Install Add the following codes to your Gemfile:
group :development, :test do gem 'test-unit-rails' endUpdate bundled gems:
% bundle updateReplace @"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 2.x features, RR integration and Capybara integration. h2. License LGPLv2.1 or later. (Kouhei Sutou has a right to change the license including contributed patches.) h2. Authors * Kouhei Sutou