Datasets:
File size: 244 Bytes
907001b | 1 2 3 4 5 6 | def verifyZeroInteractions(*objs):
"""pass"""
for obj in objs:
theMock = _get_mock_or_raise(obj)
if len(theMock.invocations) > 0:
raise VerificationError('\nUnwanted interaction: %s' % theMock.invocations[0]) |