A simple test case using Ruby and XML - Part III
#file: test-feed.cgi require 'test_feed' puts "Content-Type: text/xml" puts puts "<test_report>" tf = Test_feed.new() puts tf.plan puts "<actual>" tf.print('create_file', tf.tested) puts "</actual>" puts "</test_report>"