Flowdock
consolidate_failures(failed) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/autotest/rspec.rb, line 28
  def consolidate_failures(failed)
    filters = new_hash_of_arrays
    failed.each do |spec, trace|
      if trace =~ /\n(\.\/)?(.*spec\.rb):[\d]+:/
        filters[$2] << spec
      end
    end
    return filters
  end
Register or log in to add new notes.