1111
1212## Description
1313
14- Ruby Test is a universal test harness for Ruby that can be used by any Ruby
15- test framework. You think of Ruby Test as a * meta* test framework.
14+ Ruby Test is a universal test harness for Ruby developers. It can be used
15+ by any Ruby test framework. You can think of Ruby Test as a * meta test framework* .
1616Ruby Test defines a straight-forward specification that any test framework
17- can utilize as it backend . This makes it almost trival to implement new
17+ can utilize as it back-end . This makes it almost trivial to implement new
1818test frameworks. Ruby Test further allows tests from various frameworks
1919to all run through a single uniform user interface in a single pass.
2020
@@ -29,7 +29,7 @@ over as a test case with each entry handled in the same manner. All test
2929objects must respond to ` #to_s ` so their description can be used in test
3030reports.
3131
32- Ruby Test handles assertions via [ BRASS] ( http://rubyworks.github.com/brass )
32+ Ruby Test handles assertions with [ BRASS] ( http://rubyworks.github.com/brass )
3333compliance. Any raised exception that responds to ` #assertion? ` in the
3434affirmative is taken to be a failed assertion rather than simply an error.
3535
6666The command line tool takes various options, use ` -h/--help ` to see them.
6767
6868When running tests, you need to be sure to load in your test framework
69- or your framework's RubyTest adapter. This is usually done via a helper
69+ or your framework's Ruby Test adapter. This is usually done via a helper
7070script in the test files, but might also be done via command line options,
7171e.g.
7272
7373 $ rubytest -r lemon -r ae test/test_*.rb
7474
75- RubyTest supports [ dotopts] ( http://rubyworks.github.com/dotopts ) out of the
75+ Ruby Test supports [ dotopts] ( http://rubyworks.github.com/dotopts ) out of the
7676box, so it easy to setup reusable options. For example, a ` .option ` file
7777entry might be:
7878
@@ -105,10 +105,10 @@ requirements does the job and does it well.
105105
106106## Development
107107
108- Ruby Test is still a "nuby" gem. Please feel OBLIGATED to help improve it ;-)
108+ Ruby Test is still a bit of a "nuby" gem. Please feel OBLIGATED to help improve it ;-)
109109
110110Ruby Test is a [ Rubyworks] ( http://rubyworks.github.com ) project. If you can't
111- contribue code, you can still help out by contributing to our development fund.
111+ contribute code, you can still help out by contributing to our development fund.
112112
113113
114114## Reference Material
@@ -121,7 +121,7 @@ contribue code, you can still help out by contributing to our development fund.
121121
122122Copyright (c) 2011 Rubyworks
123123
124- Made available according to the terms of the <b >FreeBSD license </b >.
124+ Made available according to the terms of the <b >BSD-2-Clause </b > license .
125125
126126See LICENSE.txt for details.
127127
0 commit comments