From: Ryan Leavengood Date: 2005-11-14T04:40:55+09:00 Subject: Re: Modifing TestRunner Help On 11/11/05, uncleg wrote: > > I could just type `ruby testFoo.rb` and have all the tests run but if I > only wanted a specific test to run I could type something like `ruby > testFoo.rb test_False`. Does anyone have any ideas/tips on how to go > about setting this up? This works out of the box: ruby testFoo.rb -n test_False Pass --help to your test file to see all the options from the Test::Unit test runner. Ryan