# File lib/minitest/spec.rb, line 93
  def self.nuke_test_methods!
    self.public_instance_methods.grep(/^test_/).each do |name|
      self.send :undef_method, name
    end
  end