0
votes
What’s the best way to unit test protected & private methods in Ruby?
I would probably lean toward using instance_eval(). Before I knew about instance_eval(), however, I would create a derived class in my unit test file. I would then set the private method(s) to be …
