Daniel Berger
Posts: 1383
Nickname: djberg96
Registered: Sep, 2004
Daniel Berger is a Ruby Programmer who also dabbles in C and Perl
Test::Unit 2.x, now with TAP
Posted: Oct 22, 2009 8:40 AM
This post originated from an RSS feed registered with Ruby Buzz
by Daniel Berger.
Original Post: Test::Unit 2.x, now with TAP
Feed Title: Testing 1,2,3...
Feed URL: http://djberg96.livejournal.com/data/rss
Feed Description: A blog on Ruby and other stuff.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Daniel Berger
Latest Posts From Testing 1,2,3...
Advertisement
The test-unit gem now supports a TAP runner.
dberger@file-temp>ruby -Ilib test/test_file_temp.rb --runner tap
1..9
ok 1 - test_file_temp_auto_delete(TC_File_Temp)
ok 2 - test_file_temp_expected_errors(TC_File_Temp)
ok 3 - test_file_temp_name(TC_File_Temp)
ok 4 - test_file_temp_name_basic_functionality(TC_File_Temp)
ok 5 - test_file_temp_no_delete(TC_File_Temp)
ok 6 - test_file_temp_no_delete_with_template(TC_File_Temp)
ok 7 - test_file_temp_threaded(TC_File_Temp)
ok 8 - test_file_temp_tmpdir(TC_File_Temp)
ok 9 - test_file_temp_version(TC_File_Temp)
# Finished in 0.160204 seconds.
# 9 tests, 20 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
There is also Bacon .
Read: Test::Unit 2.x, now with TAP