class Minitest::Bisect::PathExpander

:nodoc:

def initialize args = ARGV # :nodoc:

:nodoc:
def initialize args = ARGV # :nodoc:
  super args, TEST_GLOB, "test"
  self.rb_flags = %w[-Itest:lib]
end

def process_flags flags

def process_flags flags
  flags.reject { |flag| # all hits are truthy, so this works out well
    case flag
    when /^-I(.*)/ then
      rb_flags << flag
    when /^-d/ then
      rb_flags << flag
    when /^-w/ then
      rb_flags << flag
    else
      false
    end
  }
end