summaryrefslogtreecommitdiff
path: root/spec/monkey_patches/alias_should_to_must.rb
diff options
context:
space:
mode:
authorKen Barber <ken@bob.sh>2011-06-29 12:25:43 +0100
committerKen Barber <ken@bob.sh>2011-06-29 12:25:43 +0100
commit157531cd290e53c9a174171bb29de293bade2ed4 (patch)
tree6dd14bc9530315102e1f16bdbc0c173d94c95c72 /spec/monkey_patches/alias_should_to_must.rb
parente6b5a6dd0252f5491753abb3b71859644036f2fe (diff)
downloadpuppet-stdlib-157531cd290e53c9a174171bb29de293bade2ed4.tar.gz
puppet-stdlib-157531cd290e53c9a174171bb29de293bade2ed4.tar.bz2
Copied function test scaffolding from puppet.
Diffstat (limited to 'spec/monkey_patches/alias_should_to_must.rb')
-rwxr-xr-xspec/monkey_patches/alias_should_to_must.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/monkey_patches/alias_should_to_must.rb b/spec/monkey_patches/alias_should_to_must.rb
new file mode 100755
index 0000000..1a11117
--- /dev/null
+++ b/spec/monkey_patches/alias_should_to_must.rb
@@ -0,0 +1,8 @@
+require 'rspec'
+
+class Object
+ # This is necessary because the RAL has a 'should'
+ # method.
+ alias :must :should
+ alias :must_not :should_not
+end