Mercurial > repos > other > Puppet
view modules/firewall/spec/spec_helper.rb @ 218:4adfea407a15 puppet-3.6
Blacklist more bad usernames
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Wed, 28 Aug 2019 17:25:36 +0100 |
parents | d6f2a0ee45c0 |
children |
line wrap: on
line source
dir = File.expand_path(File.dirname(__FILE__)) $LOAD_PATH.unshift File.join(dir, 'lib') # Don't want puppet getting the command line arguments for rake or autotest ARGV.clear require 'rubygems' require 'bundler/setup' require 'rspec-puppet' Bundler.require :default, :test require 'pathname' require 'tmpdir' Pathname.glob("#{dir}/shared_behaviours/**/*.rb") do |behaviour| require behaviour.relative_path_from(Pathname.new(dir)) end fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures')) RSpec.configure do |config| config.tty = true config.mock_with :rspec do |c| c.syntax = :expect end config.module_path = File.join(fixture_path, 'modules') config.manifest_dir = File.join(fixture_path, 'manifests') end