Sha256: 9618eb59297eb86d28c77d0dfb18c9d4220f090081bb7f93218ddce70bd6d058

Contents?: true

Size: 965 Bytes

Versions: 9

Compression:

Stored size: 965 Bytes

Contents

# test-unit-rails

[Web site](http://test-unit.github.io/#test-unit-rails)

## Description

test-unit-rails is a Rails adapter for test-unit gem. You can use full test-unit gem features, [RR](https://rubygems.org/gems/rr) integration and [Capybara](https://rubygems.org/gems/capybara) integration with test-unit-rails.

Rails supports Minitest but doesn't support test-unit.

## Install

Add the following codes to your Gemfile:

```ruby
group :development, :test do
  gem 'test-unit-rails'
end
```

Update bundled gems:

```sh
% bundle update
```

Replace `"require 'rails/test_help'"` in your test/test_helper.rb with the following codes:

```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.

## License

LGPLv2.1 or later.

(Kouhei Sutou has a right to change the license including contributed patches.)

## Authors

* Kouhei Sutou
* Haruka Yoshihara

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
test-unit-rails-7.0.2 README.md
test-unit-rails-7.0.1 README.md
test-unit-rails-7.0.0 README.md
test-unit-rails-6.1.0 README.md
test-unit-rails-6.0.0 README.md
test-unit-rails-5.2.2 README.md
test-unit-rails-5.2.1 README.md
test-unit-rails-5.1.3 README.md
test-unit-rails-5.1.2 README.md