blob: db14b47cb8d17919d0d361f405717d3c3c09122a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
dir = File.expand_path(File.dirname(__FILE__))
$LOAD_PATH.unshift("#{dir}/")
$LOAD_PATH.unshift("#{dir}/../lib")
$LOAD_PATH.unshift("#{dir}/../test/lib") # Add the old test dir, so that we can still find our local mocha and spec
# include any gems in vendor/gems
Dir["#{dir}/../vendor/gems/**"].each do |path|
libpath = File.join(path, "lib")
if File.directory?(libpath)
$LOAD_PATH.unshift(libpath)
else
$LOAD_PATH.unshift(path)
end
end
require 'puppettest'
require 'puppettest/runnable_test'
require 'mocha'
require 'spec'
# load any monkey-patches
Dir["#{dir}/monkey_patches/*.rb"].map { |file| require file }
Spec::Runner.configure do |config|
config.mock_with :mocha
# config.prepend_before :all do
# setup_mocks_for_rspec
# setup() if respond_to? :setup
# end
#
# config.prepend_after :all do
# teardown() if respond_to? :teardown
# end
end
|