Sha256: 511fbb45685129766f83c3f78f56ce81db6d69aaa70be0a991a9a2d4cda06e21
Contents?: true
Size: 723 Bytes
Versions: 3
Compression:
Stored size: 723 Bytes
Contents
$:.unshift(File.join("../../lib", __FILE__)) require "bundler/setup" require 'rspec' begin require 'simplecov' require 'simplecov-lcov' SimpleCov::Formatter::LcovFormatter.config do |config| #Coveralls is coverage by default/lcov. Send info results config.report_with_single_file = true config.single_report_path = 'coverage/lcov.info' end SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::LcovFormatter ]) SimpleCov.start do add_filter "/spec/" end rescue LoadError end require 'json/canonicalization' ::RSpec.configure do |c| c.filter_run focus: true c.run_all_when_everything_filtered = true end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
json-canonicalization-0.3.3 | spec/spec_helper.rb |
json-canonicalization-0.3.1 | spec/spec_helper.rb |
json-canonicalization-0.3.0 | spec/spec_helper.rb |