def verify()

in doubles/space.py [0:0]


    def verify(self):
        """Verifies expectations on all doubled objects.

        :raise: ``MockExpectationError`` on the first expectation that is not satisfied, if any.
        """

        if self._is_verified:
            return

        for proxy in self._proxies.values():
            proxy.verify()

        self._is_verified = True