Sha256: 9e0fe2a29e3e51c766702bdf61b732a86cdce2751672e82615274896d12fdd2c
Contents?: true
Size: 619 Bytes
Versions: 1
Compression:
Stored size: 619 Bytes
Contents
MINIMUM_COVERAGE = 40 unless ENV['COVERAGE'] == 'off' require 'simplecov' require 'simplecov-rcov' require 'coveralls' Coveralls.wear! SimpleCov.formatters = [ SimpleCov::Formatter::RcovFormatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start do add_filter '/vendor/' add_filter '/spec/' add_group 'lib', 'lib' end SimpleCov.at_exit do SimpleCov.result.format! percent = SimpleCov.result.covered_percent unless percent >= MINIMUM_COVERAGE puts "Coverage must be above #{MINIMUM_COVERAGE}%. It is #{"%.2f" % percent}%" Kernel.exit(1) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dependent_restrict-0.2.3 | spec/support/coverage_loader.rb |