public Method

Assertions.clean_backtrace() { || ... }

There's no documentation for this item.

Source Code

# File action_controller/assertions.rb, line 53
def clean_backtrace(&block)
  yield
rescue Test::Unit::AssertionFailedError => error
  framework_path = Regexp.new(File.expand_path("#{File.dirname(__FILE__)}/assertions"))
  error.backtrace.reject! { |line| File.expand_path(line) =~ framework_path }
  raise
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.