Sha256: 2c349d326b1d791619ea75e11c3a60ebeb533308c85b6fa867088c26d4b440cd

Contents?: true

Size: 1.48 KB

Versions: 3

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true
require 'simplecov'
require_relative '../lib/puppet-debugger'
require 'yaml'
ENV['COVERAGE'] = 'true'

module SimpleCov::Configuration
  def clean_filters
    @filters = []
  end
end

SimpleCov.configure do
  clean_filters
  load_profile 'test_frameworks'
end

SimpleCov.start do
  add_filter '/.rvm/'
  add_filter 'vendor'
  add_filter 'bundler'
end

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require 'rspec'
require 'puppet-debugger'
ENV['REPL_FACTERDB_FILTER'] = 'operatingsystem=Fedora and operatingsystemrelease=23 and architecture=x86_64 and facterversion=/^2\\.4/'
# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

def stdlib_path
  File.join(Puppet[:basemodulepath].split(':').first, 'stdlib')
end

# def install_stdlib
#   `bundle exec puppet module install puppetlabs/stdlib` unless File.exists?(stdlib_path)
# end
#
# install_stdlib

def fixtures_dir
  File.join(File.dirname(__FILE__), 'fixtures')
end

def environments_dir
  File.join(fixtures_dir, 'environments')
end

def supports_native_functions?
  Gem::Version.new(Puppet.version) >= Gem::Version.new('4.3')
end

def supports_type_function?
  Gem::Version.new(Puppet.version) >= Gem::Version.new('4.0')
end

RSpec.configure do |config|
  config.filter_run_excluding native_functions: !supports_native_functions?
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
puppet-debugger-0.6.1 spec/spec_helper.rb
puppet-debugger-0.6.0 spec/spec_helper.rb
puppet-debugger-0.5.1 spec/spec_helper.rb