Sha256: 375f19a0ee9b2957cafbd9b11dde6d9fd45c8362343385e7c367988e445f4560

Contents?: true

Size: 706 Bytes

Versions: 17

Compression:

Stored size: 706 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 'oydid'

::RSpec.configure do |c|
  c.filter_run focus: true
  c.run_all_when_everything_filtered = true
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
oydid-0.5.6 spec/spec_helper.rb
oydid-0.5.5 spec/spec_helper.rb
oydid-0.5.4 spec/spec_helper.rb
oydid-0.5.3 spec/spec_helper.rb
semcon-0.0.2 spec/spec_helper.rb
oydid-0.4.4 spec/spec_helper.rb
oydid-0.4.3 spec/spec_helper.rb
semcon-0.0.1 spec/spec_helper.rb
oydid-0.4.1 spec/spec_helper.rb
oydid-0.4.0 spec/spec_helper.rb
oydid-0.3.6 spec/spec_helper.rb
oydid-0.3.5 spec/spec_helper.rb
oydid-0.3.2 spec/spec_helper.rb
oydid-0.3.1 spec/spec_helper.rb
oydid-0.3.0 spec/spec_helper.rb
oydid-0.2.1 spec/spec_helper.rb
oydid-0.2.0 spec/spec_helper.rb