Sha256: a54a71c93c2622c93ac8f5b591e629b4e173e500a4c4171533491396e5889f04

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

require 'simplecov'
require 'simplecov-lcov'

# patch simplecov configuration
if ! SimpleCov::Configuration.method_defined? :branch_coverage?
  module SimpleCov
    module Configuration
      def branch_coverage?
        return false
      end
    end
  end
end

SimpleCov::Formatter::LcovFormatter.config do |config|
  config.report_with_single_file = true
  config.single_report_path = 'coverage/lcov.info'
end

SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(
  [
    SimpleCov::Formatter::HTMLFormatter,
    SimpleCov::Formatter::LcovFormatter,
  ]
)
SimpleCov.start do
  add_filter 'spec/'
end

require 'vagrant-libvirt'
require 'support/environment_helper'
require 'vagrant-spec/unit'

Dir[File.dirname(__FILE__) + '/support/**/*.rb'].each { |f| require f }

RSpec.configure do |config|
  # ensure that setting of LIBVIRT_DEFAULT_URI in the environment is not picked
  # up directly by tests, instead they must set as needed. Some build envs will
  # may have it set to 'qemu:///session'.
  config.before(:suite) do
    ENV.delete('LIBVIRT_DEFAULT_URI')
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-libvirt-0.6.3 spec/spec_helper.rb
vagrant-libvirt-0.6.2 spec/spec_helper.rb
vagrant-libvirt-0.6.1 spec/spec_helper.rb
vagrant-libvirt-0.6.0 spec/spec_helper.rb