Sha256: 67252540d62bc62ef7e81cac6f7987b1c6aa185b0b71aa85c0c78c1eaeb46004
Contents?: true
Size: 1.39 KB
Versions: 13
Compression:
Stored size: 1.39 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) 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 mocha_test_name name end # @private def handle_mocha_expectation_error(exception) return false unless exception.is_a?(Mocha::ExpectationError) problem_occurred add_failure(exception.message, exception.backtrace) true end end end end end
Version data entries
13 entries across 13 versions & 2 rubygems