From: itsme213 Date: 2004-11-27T01:57:56+09:00 Subject: Re: test/unit runner with ui? > Yes, specify the names of the test functions you want to run on the > command line: > > ./test_all.rb test_schneir_a That was the first thing I tried, but it still ran all the tests. It could be that command-line options only allow me to select between different test suite files. But my ruby file looks like: ---------------- # ... my code to be tested class A ... end class B ... end # test code if __FILE__ == $0 require 'test/unit' class Test_C < Test::Unit::TestCase def test_1; ...; end def test_2; ...; end end end --------------- Am I doing something wrong? Can I get selection at the level of test methods i.e. test_1 vs. test_2 ? Thanks!