~ubuntu-branches/ubuntu/oneiric/puppet/oneiric-security

« back to all changes in this revision

Viewing changes to vendor/gems/rspec/rake_tasks/verify_rcov.rake

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Pollock
  • Date: 2009-04-13 17:12:47 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (3.1.3 squeeze) (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090413171247-61zlnwi5esw1lhtv
ImportĀ upstreamĀ versionĀ 0.24.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
require 'rake'
2
 
require 'spec/rake/verify_rcov'
3
 
 
4
 
RCov::VerifyTask.new(:verify_rcov => :spec) do |t|
5
 
  t.threshold = 100.0 # Make sure you have rcov 0.7 or higher!
6
 
  t.index_html = '../doc/output/coverage/index.html'
7
 
end