Sha256: e89283c82a108751b5ec79bbb886e59296161531c06497a31411d8cf65a893ce

Contents?: true

Size: 757 Bytes

Versions: 1

Compression:

Stored size: 757 Bytes

Contents

= minitest-rails

MiniTest integration for Rails 3.1.

== Install

    gem install minitest-rails

This installs the following gems:

    minitest

== Configure

Create a new rails app without Test::Unit:

    rails new MyApp --skip-test-unit

Add `minitest-rails` to the `:test` and `:development` groups in Isolate:

    env :development, :test do
      gem 'minitest-rails'
    end

Or, for the unenlightened, add `minitest-rails` to the `:test` and `:development` groups in Gemfile:

    group :test, :development do
      gem 'minitest-rails'
    end

== Usage

We aim to expose MiniTest with minimal changes for testing within Rails.
You can either create test classes that inherit from MiniTest::Unit::TestCase or you can use the MiniTest::Spec DSL.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minitest-rails-0.0.1 README.rdoc