Module: Mocha::Integration::MiniTest::Version141

Included in:
MiniTest::Unit::TestCase
Defined in:
lib/mocha/integration/mini_test/version_141.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(mod) ⇒ Object



11
12
13
# File 'lib/mocha/integration/mini_test/version_141.rb', line 11

def self.included(mod)
  warn "Monkey patching MiniTest v1.4.1"
end

Instance Method Details

#run(runner) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/mocha/integration/mini_test/version_141.rb', line 14

def run runner
  trap 'INFO' do
    warn '%s#%s %.2fs' % [self.class, self.__name__,
      (Time.now - runner.start_time)]
    runner.status $stderr
  end

  assertion_counter = AssertionCounter.new(self)
  result = '.'
  begin
    begin
      @passed = nil
      self.setup
      self.__send__ self.__name__
      mocha_verify(assertion_counter)
      @passed = true
    rescue *::MiniTest::Unit::TestCase::PASSTHROUGH_EXCEPTIONS
      raise
    rescue Exception => e
      @passed = false
      result = runner.puke(self.class, self.__name__, Mocha::Integration::MiniTest.translate(e))
    ensure
      begin
        self.teardown
      rescue *::MiniTest::Unit::TestCase::PASSTHROUGH_EXCEPTIONS
        raise
      rescue Exception => e
        result = runner.puke(self.class, self.__name__, Mocha::Integration::MiniTest.translate(e))
      end
      trap 'INFO', 'DEFAULT'
    end
  ensure
    mocha_teardown
  end
  result
end