module Mocha::Integration::MiniTest::Version13::RunMethodPatch

Public Instance Methods

run(runner) click to toggle source

rubocop:disable all

# File lib/mocha/integration/mini_test/version_13.rb, line 23
def run runner
  assertion_counter = AssertionCounter.new(self)
  result = '.'
  begin
    begin
      @passed = nil
      mocha_setup
      self.setup
      self.__send__ self.name
      mocha_verify(assertion_counter)
      @passed = true
    rescue Exception => e
      @passed = false
      result = runner.puke(self.class, self.name, Mocha::Integration::MiniTest.translate(e))
    ensure
      begin
        self.teardown
      rescue Exception => e
        result = runner.puke(self.class, self.name, Mocha::Integration::MiniTest.translate(e))
      end
    end
  ensure
    mocha_teardown
  end
  result
end