Class: Minitest::Sprint

Inherits:
Object
  • Object
show all
Defined in:
lib/minitest/sprint.rb

Defined Under Namespace

Classes: RakeReporter, SprintReporter

Constant Summary collapse

VERSION =

:nodoc:

"1.5.0"

Class Method Summary collapse

Class Method Details

.run(args = ARGV) ⇒ Object

Process and run minitest cmdline.



18
19
20
21
22
# File 'lib/minitest/sprint.rb', line 18

def self.run args = ARGV
  Minitest::PathExpander.new(args).process { |f|
    require "./#{f}" if File.file? f
  }
end