class Minitest::Sprint
Runs (Get it? Itβs fast!) your tests and makes it easier to rerun individual failures.
Public Class Methods
Source
# 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 } end
Process and run minitest cmdline.