# File lib/minitest/spec.rb, line 87
  def self.define_inheritable_method name, &block
    super_method = self.superclass.instance_method name

    define_method name do
      super_method.bind(self).call if super_method # regular super() warns
      instance_eval(&block)
    end
  end