module Minitest

def self.plugin_sprint_init options

def self.plugin_sprint_init options
  case options[:sprint]
  when :rake then
    require "minitest/rake_reporter"
    self.reporter << Minitest::RakeReporter.new
  when :binstub then
    require "minitest/binstub_reporter"
    self.reporter << Minitest::BinstubReporter.new
  end
end