Re: [rspec-users] Rcov rake task problems

2009-02-03 Thread James Byrne
desc "Rcov code coverage reports" task :rcov => "rcov:all" require 'rcov/rcovtask' namespace :rcov do Rcov::RcovTask.new(:all) do task :rcov => "rcov:testunit" end Rcov::RcovTask.new(:testunit) do |t| t.libs << "test" t.output_dir = 'coverage' t.test_files = FileList['test/

[rspec-users] Rcov rake task problems

2009-02-03 Thread James Byrne
OS = MS-WinXPproSP3 / CYGWIN_NT-5.1 1.5.25(0.156/4/2) 2008-06-12 19:34 ruby 1.8.7 (2008-08-11 patchlevel 72) [i386-cygwin] rails (2.2.2) rake (0.8.3) rcov (0.8.1.1.0) I am trying to develop a rake task that will aggregate the results for testunit, spec and cucumber tests. However, I find that I c