2004-11-23 20:04:44 -05:00
|
|
|
== Running with Rake
|
|
|
|
|
|
|
|
The easiest way to run the unit tests is through Rake. The default task runs
|
2010-08-14 01:13:00 -04:00
|
|
|
the entire test suite for all classes. For more information, checkout the
|
2004-11-23 20:04:44 -05:00
|
|
|
full array of rake tasks with "rake -T"
|
|
|
|
|
|
|
|
Rake can be found at http://rake.rubyforge.org
|
|
|
|
|
|
|
|
== Running by hand
|
|
|
|
|
2010-10-08 08:46:40 -04:00
|
|
|
To run a single test suite
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2010-10-08 08:46:40 -04:00
|
|
|
rake test TEST=path/to/test.rb
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2010-10-08 08:46:40 -04:00
|
|
|
which can be further narrowed down to one test:
|
|
|
|
|
|
|
|
rake test TEST=path/to/test.rb TESTOPTS="--name=test_something"
|