Sha256: 566b519fe2a1d6d48e379aa6163aa5d24d092f28b47d5c123ce1899d7578f071

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

require 'simplecov'
require_relative '../lib/puppet-repl'
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-repl'
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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-repl-0.3.4 spec/spec_helper.rb
puppet-repl-0.3.3 spec/spec_helper.rb
puppet-repl-0.3.2 spec/spec_helper.rb
puppet-repl-0.3.1 spec/spec_helper.rb