method

list_tests

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: Runner
list_tests(argv) 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 95
          def list_tests(argv)
            patterns = extract_filters(argv)

            tests = Rake::FileList[patterns.any? ? patterns : default_test_glob]
            tests.exclude(default_test_exclude_glob) if patterns.empty?
            tests
          end
Register or log in to add new notes.