module Minitest

def self.plugin_sprint_options opts, options # :nodoc:

:nodoc:
def self.plugin_sprint_options opts, options # :nodoc:
  opts.on "--rake", "Report how to re-run failures with rake." do
    options[:sprint] = :rake
  end
  opts.on "--binstub", "Report how to re-run failures with minitest." do
    options[:sprint] = :binstub
  end
end