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
|
2014-01-08 21:02:25 -05:00
|
|
|
the entire test suite for all classes. For more information, check out the
|
2014-01-13 15:15:52 -05:00
|
|
|
full array of rake tasks with "rake -T".
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2014-01-13 15:15:52 -05:00
|
|
|
Rake can be found at http://rake.rubyforge.org.
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
== Running by hand
|
|
|
|
|
2014-04-15 14:04:07 -04:00
|
|
|
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
|
|
|
|
2014-04-15 14:04:07 -04:00
|
|
|
Run one test in a test suite:
|
2010-10-08 08:46:40 -04:00
|
|
|
|
|
|
|
rake test TEST=path/to/test.rb TESTOPTS="--name=test_something"
|