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!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

No. The only other mechanism for multi-level returns is callcc, but that too requires creating the continuation at a level that's out of your control.

That said, in Ruby nothing is really out of your control: you could alias the method in the test framework and add any code you'd like.

link|improve this answer
Really? I didn't think it was possibly to alias across classes. – RoUS Feb 24 '11 at 21:52
1  
Sure, classes are open, you can change practically anything. – Michiel de Mare Feb 25 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.