class method self.extract_filters

Ruby on Rails 6.1.7.10

Since v5.2.8.1 Private

Available in: v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

self.extract_filters(argv)

No documentation comment.

Parameters

argv req
Source
# File railties/lib/rails/test_unit/runner.rb, line 62
          def extract_filters(argv)
            # Extract absolute and relative paths but skip -n /.*/ regexp filters.
            argv.select { |arg| path_argument?(arg) && !regexp_filter?(arg) }.map do |path|
              path = path.tr("\\", "/")
              case
              when /(:\d+)+$/.match?(path)
                file, *lines = path.split(":")
                filters << [ file, lines ]
                file
              when Dir.exist?(path)
                "#{path}/**/*_test.rb"
              else
                filters << [ path, [] ]
                path
              end
            end
          end

Defined in railties/lib/rails/test_unit/runner.rb line 62 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Rails::TestUnit::Runner

Type at least 2 characters to search.

↑↓ navigate · open · esc close