In Ruby unit testing can I run a test class from another class
for exa
class Foo < Test::Unit:: TestCase
test_abc()
test_bnd()
Now i want to run this above test suite from my main class
so how could i do it I tried using runner
but dono wat should be argument to the run
method
Test::Unit::UI::Console::TestRunner.run(FOO)
, Regards