summaryrefslogtreecommitdiff
path: root/spec/monkey_patches/publicize_methods.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/publicize_methods.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/publicize_methods.rb')
-rwxr-xr-xspec/monkey_patches/publicize_methods.rb11
1 files changed, 11 insertions, 0 deletions
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
+