[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

List tests with test/unit

Matt Berney

7/23/2007 7:33:00 PM

Test::Unit is quite useful. I have a test class TC_BasicAcceptanceTest
with the following tests:

test_001_firstTest
test_002_secondTest
test_003_thirdTest

...

You get the picture.

Now, the ruby bat.rb -n <test name> is really useful. It allows the
execution of a single test within the test case. For running tests (and
debugging) on the command line, it would be useful to list all the tests
in the suite. Then, one could use the -n flag to run the one of
interest.

For example:

% ruby bat\bat.rb -l

TC_BasicAcceptanceTest
test_001_firstTest
test_002_secondTest
test_003_thirdTest

% ruby bat\bat.rb -n test_002_secondTest

Now the question...
If one wanted to modify the autorunner.rb, how would one iterate through
the tests in the test case? This code only lists the TC name. How does
one list the individual test cases?

o.on('-l', '--list', 'List the tests to run.'){
@collector[self].tests.each { |tc| puts "#{tc.name}" }
exit
}
--
Posted via http://www.ruby-....