Flowdock
method

derive_line_filters

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: CompositeFilter
derive_line_filters(patterns) private

No documentation

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

Hide source
# File railties/lib/rails/test_unit/runner.rb, line 147
        def derive_line_filters(patterns)
          patterns.flat_map do |file, lines|
            if lines.empty?
              Filter.new(@runnable, file, nil) if file
            else
              lines.map { |line| Filter.new(@runnable, file, line) }
            end
          end
        end
Register or log in to add new notes.