summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorDan Bode <dan@bodepd.com>2010-06-18 11:07:10 -0500
committerDan Bode <dan@bodepd.com>2010-06-18 11:07:10 -0500
commit845c14ea3524201a7b6b075a60040c05a77f16d1 (patch)
tree00ddb55d3da661be666105cdfa9b7bdc8629f056 /spec/spec_helper.rb
parentcdd46bb47a36e955e072097179ba44b1f79aea8e (diff)
parentfe6b50e0383af01023f010b26cd1cf2fa2f3c9c4 (diff)
Merge commit 'HEAD'; commit 'origin/master'
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
new file mode 100644
index 0000000..dbad9b2
--- /dev/null
+++ b/spec/spec_helper.rb
@@ -0,0 +1,23 @@
+require 'pathname'
+dir = Pathname.new(__FILE__).parent
+$LOAD_PATH.unshift(dir, dir + 'lib', dir + '../lib')
+
+require 'mocha'
+require 'puppet'
+gem 'rspec'
+require 'spec/autorun'
+
+require 'helpers'
+require 'matchers'
+
+Spec::Runner.configure do |config|
+ config.mock_with :mocha
+ config.include Helpers
+ config.include Matchers
+end
+
+# We need this because the RAL uses 'should' as a method. This
+# allows us the same behaviour but with a different method name.
+class Object
+ alias :must :should
+end