From: James Edward Gray II Date: 2006-11-15T11:18:38+09:00 Subject: Re: [ANN] turn 0.1.0 Released On Nov 10, 2006, at 5:05 PM, Tim Pease wrote: > turn version 0.1.0 has been released! > Test::Unit Reporter New -- a new output format for Test::Unit > > > Turn this > > ..F..... > > Into this > > TestMyClass > > test_alt > PASS > > test_alt_eq > PASS > > test_bad > FAIL > ./test/test_my_class.rb:64:in `test_bad' > is not true. I don't want to belittle this library, but just to be sure, users should remember Test::Unit sports a --verbose option: $ ruby -I lib:test test/tc_csv_parsing.rb Loaded suite test/tc_csv_parsing Started ..... Finished in 0.008816 seconds. 5 tests, 83 assertions, 0 failures, 0 errors $ ruby -I lib:test test/tc_csv_parsing.rb --verbose Loaded suite test/tc_csv_parsing Started test_aras_edge_cases(TestCSVParsing): . test_james_edge_cases(TestCSVParsing): . test_malformed_csv(TestCSVParsing): . test_mastering_regex_example(TestCSVParsing): . test_std_lib_csv(TestCSVParsing): . Finished in 0.008698 seconds. 5 tests, 83 assertions, 0 failures, 0 errors James Edward Gray II