module Mocha::Hooks

def mocha_verify(assertion_counter = nil)

This method should be called at the end of each individual test, before it has been determined whether or not the test has passed.

This is equivalent to a series of "assertions".

Verifies that all mock expectations have been met (only for use by authors of test libraries).
def mocha_verify(assertion_counter = nil)
  Mockery.verify(assertion_counter)
end