summaryrefslogtreecommitdiffstats
path: root/spec/monkey_patches/publicize_methods.rb
blob: b39e9c00260e50874170586ffa24f0af814d504f (plain)
1
2
3
4
5
6
7
8
9
10
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