class Minitest::Sprint

Runs (Get it? It’s fast!) your tests and makes it easier to rerun individual failures.

Public Class Methods

Process and run minitest cmdline.

# File lib/minitest/sprint.rb, line 19
def self.run args = ARGV
  if args.delete("--bisect") or args.delete("-b") then
    require_relative "bisect"

    return Minitest::Bisect.run ARGV
  end

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