Flowdock
method

clean_backtrace

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActionController::Assertions
clean_backtrace(&block) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.