search for: coverage_functional

Displaying 1 result from an estimated 1 matches for "coverage_functional".

2006 Mar 16
1
Re: rcov 0.2.0 - code coverage tool for Ruby
...onal/*.rb" end namespace :rcov do desc "generate a unit test coverage report in #{RCOV_OUT}/index.html" task :units do sh "#{RCOV} test/unit/*.rb" end desc "generate a functional test coverage report in #{RCOV_OUT}/index.html" task :coverage_functional do sh "#{RCOV} test/functional/*.rb" end end end