Sha256: ec34fc22db4d0900a504af8643af02aa78386341b017a5e96c71fedd0c5a7540
Contents?: true
Size: 708 Bytes
Versions: 1
Compression:
Stored size: 708 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 'pplcdid' ::RSpec.configure do |c| c.filter_run focus: true c.run_all_when_everything_filtered = true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pplcdid-1.2.3 | spec/spec_helper.rb |