mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fixed typo and improved readability.
This commit is contained in:
parent
b671e4d86a
commit
9fdfe2ec1e
1 changed files with 2 additions and 1 deletions
|
@ -748,7 +748,8 @@ You don't need to set up and run your tests by hand on a test-by-test basis. Rai
|
|||
|
||||
h3. Brief Note About +Test::Unit+
|
||||
|
||||
Ruby ships with a boat load of libraries. One little gem of a library is +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+ that it is how we can use all the basic assertions in our tests.
|
||||
Ruby ships with a boat load of libraries. One little gem of a library is +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.
|
||||
|
||||
NOTE: For more information on +Test::Unit+, refer to "test/unit Documentation":http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/
|
||||
|
||||
|
|
Loading…
Reference in a new issue