From: "Marcel Molina Jr." Date: 2006-01-25T05:17:03+09:00 Subject: Re: how to run just one test method in a test case On Wed, Jan 25, 2006 at 05:03:13AM +0900, nicknameoptional wrote: > for example, I have a testcase class, which has test_1, test2, test3 > .... methods. how to run just one of the test, like test_1? Thanks The -n option. You can run a test by name e.g. ruby tc_foo.rb -n test_foo_1 or by pattern match ruby tc_foo.rb -n /foo_2/ marcel -- Marcel Molina Jr.