Sha256: 5fa157b53ec6b525abd883b6217101bd4ce4f4837890ab8b4c5f1a267d411e8a
Contents?: true
Size: 616 Bytes
Versions: 3
Compression:
Stored size: 616 Bytes
Contents
require 'simplecov' require 'erb_helper' SimpleCov.profiles.define 'gem' do add_filter '/spec/' add_filter '/features/' add_filter '/vendor/' add_group 'Libraries', '/lib/' end SimpleCov.start 'gem' require 'bundler/setup' require 'vcloud/edge_gateway' SimpleCov.at_exit do SimpleCov.result.format! # do not change the coverage percentage, instead add more unit tests to fix coverage failures. if SimpleCov.result.covered_percent < 90 print "ERROR::BAD_COVERAGE\n" print "Coverage is less than acceptable limit(90%). Please add more tests to improve the coverage\n" exit(1) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vcloud-edge_gateway-0.3.0 | spec/spec_helper.rb |
vcloud-edge_gateway-0.2.4 | spec/spec_helper.rb |
vcloud-edge_gateway-0.2.3 | spec/spec_helper.rb |