From: Koustubh Joshi Date: 2007-05-22T15:53:00+09:00 Subject: Rcov Task Hi, Am trying to run my ruby files in rcov task, here is the code, am using, begin require 'rcov/rcovtask' Rcov::RcovTask.new do |t| t.test_files = FileList["/**/TestCase/*.rb"] t.verbose = true end rescue LoadError puts 'Rcov is not available.' end There are many .rb files in that TestCase folder but it is showing the coverage of only one file... Will you plz help me, how i can get covrage of all .rb files. -- Posted via http://www.ruby-forum.com/.