2011-06-29 13:25:43 +02:00
|
|
|
dir = File.expand_path(File.dirname(__FILE__))
|
|
|
|
$LOAD_PATH.unshift File.join(dir, 'lib')
|
|
|
|
|
|
|
|
p dir
|
|
|
|
|
|
|
|
# Don't want puppet getting the command line arguments for rake or autotest
|
|
|
|
ARGV.clear
|
|
|
|
|
|
|
|
require 'puppet'
|
2011-10-03 20:51:05 +02:00
|
|
|
require 'facter'
|
2011-06-29 13:25:43 +02:00
|
|
|
require 'mocha'
|
|
|
|
gem 'rspec', '>=2.0.0'
|
|
|
|
require 'rspec/expectations'
|
|
|
|
|
2012-05-11 07:01:40 +02:00
|
|
|
|
2011-06-29 13:25:43 +02:00
|
|
|
# So everyone else doesn't have to include this base constant.
|
|
|
|
module PuppetSpec
|
|
|
|
FIXTURE_DIR = File.join(dir = File.expand_path(File.dirname(__FILE__)), "fixtures") unless defined?(FIXTURE_DIR)
|
|
|
|
end
|
|
|
|
|
2012-05-11 07:01:40 +02:00
|
|
|
# TODO: ultimately would like to move these requires into the puppet_spec_helper.rb file, but the namespaces
|
|
|
|
# are not currently the same between the two, so tests would need to be modified. Not ready to undertake that
|
|
|
|
# just yet.
|
2011-06-29 13:25:43 +02:00
|
|
|
require 'puppet_spec/files'
|
2011-10-10 20:58:48 +02:00
|
|
|
|
2012-05-11 07:01:40 +02:00
|
|
|
require 'puppet_spec_helper'
|
2011-10-10 20:58:48 +02:00
|
|
|
|
2011-06-29 13:25:43 +02:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
|
|
|
|
config.before :each do
|
|
|
|
GC.disable
|
|
|
|
end
|
|
|
|
|
|
|
|
config.after :each do
|
|
|
|
GC.enable
|
|
|
|
end
|
|
|
|
end
|