method
clean_backtrace
rails latest stable - Class:
Test::Unit::Assertions
clean_backtrace(&block)public
No documentation available.
# File actionpack/lib/action_controller/assertions.rb, line 312
def clean_backtrace(&block)
yield
rescue AssertionFailedError => e
path = File.expand_path(__FILE__)
raise AssertionFailedError, e.message, e.backtrace.reject { |line| File.expand_path(line) =~ /#{path}/ }
end