module Mocha::Integration::TestUnit::Adapter

def handle_mocha_expectation_error(exception)

Other tags:
    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