I’m using Rake to run my specs e.g.
task :test do
Rake::Task[‘spec’].execute
end
how can I aspect this to include some sort of coverage report - RCov
maybe?
Of course, I could just escape to the command line with something like
system(‘rcov rspec <files_spec.rb>’) but I prefer to solve this
programaticaly since our spec task has filters set up etc which I don’t
want
to duplicate.
any help appreciated.
it seems the documentation on the RSpec 1 site
http://rspec.info/documentation/tools/rake.html points to a solution
that no
longer works in RSpec 2
Thanks!