test-unit-rails
説明
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.
インストール
以下のコードをGemfileに追加してください。
ruby
group :development, :test do
gem 'test-unit-rails'
end
バンドルするgemをアップデートします。
sh
% bundle update
test/test_helper.rb内の "require 'rails/test_help'"
を以下のコードで置き換えます。
ruby
# 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またはそれ以降のバージョン。
(コントリビュートされたパッチなども含み、Kouhei Sutouがライセンスを変更する権利を持ちます。)
作者
- Kouhei Sutou
- Haruka Yoshihara