Class: Module

Inherits:
Object show all
Defined in:
lib/minitest/spec.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#infect_an_assertion(meth, new_name, dont_flip = false) ⇒ Object

:nodoc:



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/minitest/spec.rb', line 6

def infect_an_assertion meth, new_name, dont_flip = false # :nodoc:
  # warn "%-22p -> %p %p" % [meth, new_name, dont_flip]
  self.class_eval <<-EOM
    def #{new_name} *args
      case
      when Proc === self then
        Minitest::Spec.current.#{meth}(*args, &self)
      when #{!!dont_flip} then
        Minitest::Spec.current.#{meth}(self, *args)
      else
        Minitest::Spec.current.#{meth}(args.first, self, *args[1..-1])
      end
    end
  EOM
end