Sha256: f022c82edbba35625d27fee867880ba35bfbb9ae56c2727ac3aea85a073282f6

Contents?: true

Size: 1.31 KB

Versions: 28

Compression:

Stored size: 1.31 KB

Contents

require 'mocha/api'
require 'mocha/integration/assertion_counter'
require 'mocha/expectation_error'

module Mocha
  module Integration
    module TestUnit

      # Integrates Mocha into recent versions of Test::Unit.
      #
      # See the source code for an example of how to integrate Mocha into a test library.
      module Adapter
        include Mocha::API

        # @private
        def self.applicable_to?(test_unit_version, ruby_version = nil)
          Gem::Requirement.new('>= 2.5.1').satisfied_by?(test_unit_version)
        end

        # @private
        def self.description
          "adapter for Test::Unit gem >= v2.5.1"
        end

        # @private
        def self.included(mod)
          mod.setup :mocha_setup, :before => :prepend

          mod.exception_handler(:handle_mocha_expectation_error)

          mod.cleanup :after => :append do
            assertion_counter = Integration::AssertionCounter.new(self)
            mocha_verify(assertion_counter)
          end

          mod.teardown :mocha_teardown, :after => :append
        end

        private

        # @private
        def handle_mocha_expectation_error(e)
          return false unless e.is_a?(Mocha::ExpectationError)
          problem_occurred
          add_failure(e.message, e.backtrace)
          true
        end
      end
    end
  end
end

Version data entries

28 entries across 24 versions & 5 rubygems

Version Path
challah-1.0.0.beta vendor/bundle/gems/mocha-0.13.3/lib/mocha/integration/test_unit/adapter.rb
mocha-0.13.3 lib/mocha/integration/test_unit/adapter.rb
mocha-0.13.2 lib/mocha/integration/test_unit/adapter.rb
mocha-0.13.1 lib/mocha/integration/test_unit/adapter.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.13.0/lib/mocha/integration/test_unit/adapter.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/mocha-0.13.0/lib/mocha/integration/test_unit/adapter.rb
challah-0.8.3 vendor/bundle/gems/mocha-0.13.0/lib/mocha/integration/test_unit/adapter.rb
mocha-0.13.0 lib/mocha/integration/test_unit/adapter.rb