class Mocha::Expectation

def at_least_once

Other tags:
    Example: Expected method must be called at least once. -

Returns:
  • (Expectation) - the same expectation, thereby allowing invocations of other {Expectation} methods to be chained.
def at_least_once
  at_least(1)
end