Sha256: ea6c0dce2d4ac3168ff8c871873a17811f6afc78d59ed5861de864ca8408b486

Contents?: true

Size: 1.66 KB

Versions: 14

Compression:

Stored size: 1.66 KB

Contents

require 'mocha/integration/mini_test/assertion_counter'
require 'mocha/expectation_error'

module Mocha
  
  module Integration
    
    module MiniTest
      
      module Version142To172
        def self.included(mod)
          $stderr.puts "Monkey patching MiniTest >= v1.4.2 and <= v1.7.2" if $mocha_options['debug']
        end
        def run runner
          trap 'INFO' do
            warn '%s#%s %.2fs' % [self.class, self.__name__,
              (Time.now - runner.start_time)]
            runner.status $stderr
          end if ::MiniTest::Unit::TestCase::SUPPORTS_INFO_SIGNAL
          
          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' if ::MiniTest::Unit::TestCase::SUPPORTS_INFO_SIGNAL
            end
          ensure
            mocha_teardown
          end
          result
        end
      end
      
    end
    
  end
  
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
challah-1.0.0.beta vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.9.1.beta.3 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
devise_sociable-0.1.0 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.9.1.beta vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.9.0 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.6.2 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.6.1 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.6.0 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.5.4 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.5.3 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.5.2 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
challah-0.5.1 vendor/bundle/gems/mocha-0.10.5/lib/mocha/integration/mini_test/version_142_to_172.rb
mocha-0.10.5 lib/mocha/integration/mini_test/version_142_to_172.rb
mocha-0.10.4 lib/mocha/integration/mini_test/version_142_to_172.rb