diff options
author | Gaurish Sharma <contact@gaurishsharma.com> | 2014-04-09 04:34:33 +0530 |
---|---|---|
committer | Gaurish Sharma <contact@gaurishsharma.com> | 2014-04-09 04:34:33 +0530 |
commit | 5d5b7c56ac272a38bfbdf552906dcefb43ddc5c2 (patch) | |
tree | be3a728b6c8e3c82e92725fe467d8a153c1d6ac2 /guides | |
parent | cb12e0408a88ca128da9c7a8a46ff4c75b0c4dd9 (diff) | |
download | rails-5d5b7c56ac272a38bfbdf552906dcefb43ddc5c2.tar.gz rails-5d5b7c56ac272a38bfbdf552906dcefb43ddc5c2.tar.bz2 rails-5d5b7c56ac272a38bfbdf552906dcefb43ddc5c2.zip |
Instead boat load of libraries, simply say StdLib
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index aa37115d14..36d37f3af0 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -796,7 +796,7 @@ when you initiate a Rails project. Brief Note About `MiniTest` ----------------------------- -Ruby ships with a boat load of libraries. Ruby 1.8 provides `Test::Unit`, a framework for unit testing in Ruby. All the basic assertions discussed above are actually defined in `Test::Unit::Assertions`. The class `ActiveSupport::TestCase` which we have been using in our unit and functional tests extends `Test::Unit::TestCase`, allowing +Ruby ships with a vast Standard Library for all common use-cases including testing. Ruby 1.8 provided `Test::Unit`, a framework for unit testing in Ruby. All the basic assertions discussed above are actually defined in `Test::Unit::Assertions`. The class `ActiveSupport::TestCase` which we have been using in our unit and functional tests extends `Test::Unit::TestCase`, allowing us to use all of the basic assertions in our tests. Ruby 1.9 introduced `MiniTest`, an updated version of `Test::Unit` which provides a backwards compatible API for `Test::Unit`. You could also use `MiniTest` in Ruby 1.8 by installing the `minitest` gem. |