1 2 3 4 5 6 7 8 9 10 11 12 13 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 50 51 52 53 54 55 56 57 58
|
require 'test/unit/testcase'
require 'mocha/integration/test_unit/assertion_counter'
require 'mocha/expectation_error'
module Mocha
module Integration
module TestUnit
module GemVersion230To240
def self.included(mod)
$stderr.puts "Monkey patching Test::Unit gem >= v2.3.0 and <= v2.4.0" if $mocha_options['debug']
end
def run(result)
assertion_counter = AssertionCounter.new(result)
begin
@internal_data.test_started
@_result = result
yield(Test::Unit::TestCase::STARTED, name)
yield(Test::Unit::TestCase::STARTED_OBJECT, self)
begin
begin
run_setup
run_test
run_cleanup
mocha_verify(assertion_counter)
add_pass
rescue Mocha::ExpectationError => e
add_failure(e.message, e.backtrace)
rescue Exception
@internal_data.interrupted
raise unless handle_exception($!)
ensure
begin
run_teardown
rescue Exception
raise unless handle_exception($!)
end
end
ensure
mocha_teardown
end
@internal_data.test_finished
result.add_run
yield(Test::Unit::TestCase::FINISHED, name)
yield(Test::Unit::TestCase::FINISHED_OBJECT, self)
ensure
# @_result = nil # For test-spec's after_all :<
end
end
end
end
end
end
|