README.textile in test-unit-rails-1.0.1 vs README.textile in test-unit-rails-1.0.2
- old
+ new
@@ -8,28 +8,28 @@
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
-You add the following codes to your Gemfile:
+Add the following codes to your Gemfile:
<pre>
group :development, :test do
gem 'test-unit-rails'
end
</pre>
-And you update bundled gems:
+Update bundled gems:
<pre>
% bundle update
</pre>
-You replace @"require 'rails/test_help'"@ in your test/test_helper.rb with the following codes:
+Replace @"require 'rails/test_help'"@ in your test/test_helper.rb with the following codes:
<pre>
# require 'rails/test_help'
-require 'test/unit/rails'
+require 'test/unit/rails/test_help'
</pre>
Now you can use full test-unit 2.x features, RR integration and Capybara integration.
h2. License