Sha256: 8cbfdf8fed0bcc6ce4b89f51108a91442b5f8bd62f563dde9f572b91c2ae64bf
Contents?: true
Size: 1.64 KB
Versions: 9
Compression:
Stored size: 1.64 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 def supports_datatypes? Gem::Version.new(Puppet.version) >= Gem::Version.new('4.5') end RSpec.configure do |config| config.filter_run_excluding native_functions: !supports_native_functions? RSpec::Expectations.configuration.on_potential_false_positives = :nothing end
Version data entries
9 entries across 9 versions & 1 rubygems