method
    
    eval_each_fail_slow
 
  eval_each_fail_slow(blocks)
  public
  
    Hide source    
    
      
  
# File lib/spec/example/example_methods.rb, line 77 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

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
    
 
    
    
     
  