Ruby 1.8.6
I would like to be able to unwind the stack to an arbitrary level in a situation where catch/try is not available (i.e., the code to which I'm unwinding is out of my control).
For example, in a testing scenario, I would like to be able to have my tests call a method that check for prerequisites, and unwinds to the caller of the test if those prereqs aren't met. ('resume at caller[1]', essentially.) Since the test harness is out of my control, I can't set up a catch block at the appropriate place.
Is this possible?
Thanks!