method

clean_backtrace

rails latest stable - Class: ActionController::Assertions

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

clean_backtrace(&block)
public

No documentation available.

# File actionpack/lib/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