summaryrefslogtreecommitdiff
path: root/spec/monkey_patches
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
parente6b5a6dd0252f5491753abb3b71859644036f2fe (diff)
Copied function test scaffolding from puppet.
Diffstat (limited to 'spec/monkey_patches')
-rwxr-xr-xspec/monkey_patches/alias_should_to_must.rb8
-rwxr-xr-xspec/monkey_patches/publicize_methods.rb11
2 files changed, 19 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
diff --git a/spec/monkey_patches/publicize_methods.rb b/spec/monkey_patches/publicize_methods.rb
new file mode 100755
index 0000000..b39e9c0
--- /dev/null
+++ b/spec/monkey_patches/publicize_methods.rb
@@ -0,0 +1,11 @@
+# Some monkey-patching to allow us to test private methods.
+class Class
+ def publicize_methods(*methods)
+ saved_private_instance_methods = methods.empty? ? self.private_instance_methods : methods
+
+ self.class_eval { public(*saved_private_instance_methods) }
+ yield
+ self.class_eval { private(*saved_private_instance_methods) }
+ end
+end
+