method
eval_each_fail_slow
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
eval_each_fail_slow(blocks)
public
Hide source
# File lib/spec/example/example_methods.rb, line 73 def eval_each_fail_slow(blocks) # :nodoc: first_exception = nil blocks.each do |block| begin instance_eval(&block) rescue Exception => e first_exception ||= e end end raise first_exception if first_exception end